You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/serverless-api/src/streams/logs.ts
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,9 @@ import { LogsConfig } from '../types/logs';
7
7
exportclassLogsStreamextendsReadable{
8
8
private_pollingFrequency: number;
9
9
private_pollingCacheSize: number;
10
-
private_interval: NodeJS.Timeout|undefined;
10
+
// The builds become flaky if this is set to NodeJS.Timer or number as type because TypeScript sometimes infers the wrong one of the two. This solves this problem:
0 commit comments