chengB12

Results 9 comments of chengB12

confirmed find same issue dayjs.tz("2020-11-24T02:55:43+0900").format() will return correct time, however, dayjs.tz("2020-11-24T02:55:43+09:00").format() will parse timestring without suffix with GMT time

Another related bug: console.log(dayjs.tz('2020-11-24T02:55:43-0800').format()) // 2020-11-24T02:55:43-08:00 console.log(new Date(dayjs.tz('2020-11-24T02:55:43-0800').valueOf())) // 2020-11-24T10:55:43.080Z console.log(dayjs.tz('2020-11-24T02:55:43-0800').valueOf()) // 1606215343080 note the milliseconds is wrong the milliseconds is actually offset in ISO string, if you change offset,...

Thanks, I believe this feature is important for approach exactly-once

I also tried another node.js kakfa library, and it doesn't have this duplicated message during rebalancing issue, and yet still eagerly rebalancing: https://blizzard.github.io/node-rdkafka/current/ if kafka-js can mimic similar strategy, that...

I found both node-rdkafka and java client would trying to exhaust one partition before fetch another partition if subscribed on both partitions, while kakfa-js would fetch both partitions alternatively between...

Duplicate messages are generally unavoidable without maintain external message states However, it does seems kafkajs has bug that duplicate messages will occurs during rebalancing. Since I can almost 100% reproduce...

This is what I do ```typescript export function isTimeMatches(cronExpression: string, date: Date): boolean { const currentDate = date.valueOf() const parsed = cronParser.parseExpression(cronExpression, { // this is bug of cron-parser, if...

My issue is "Error: Multiple occurences of sentinel "NODE_SEA_FUSE_fce680ab2cc467b6e072b8b5df1996b2" found in the binary" for macos and node v20.10.0 (and v20.11.0 LTS too)

This feature is what I want too. Also besides using profiles, I hope this can be achieved through command line / command palette without need to create complex profile: i.e....