We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c46d5d commit 3b559e1Copy full SHA for 3b559e1
packages/core/src/v3/apiClient/runStream.ts
@@ -762,7 +762,7 @@ function parseRedisStreamIdTimestamp(id?: string): number {
762
return Date.now();
763
}
764
765
- const timestamp = parseInt(id.split("-")[0] as string);
+ const timestamp = parseInt(id.split("-")[0] as string, 10);
766
if (isNaN(timestamp)) {
767
768
0 commit comments