File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,7 @@ export class Checkpointer {
277277 return result . checkpoint ;
278278 } finally {
279279 if ( opts . shouldHeartbeat ) {
280+ // @ts -ignore - Some kind of node incompatible type issue
280281 clearInterval ( interval ) ;
281282 }
282283 removeCurrentAbortController ( ) ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export type TriggerParams = {
6565 delayUntil ?: Date ;
6666 queuedAt ?: Date ;
6767 maxAttempts ?: number ;
68- taskEventStore : string ;
68+ taskEventStore ? : string ;
6969 priorityMs ?: number ;
7070 ttl ?: string ;
7171 tags : { id : string ; name : string } [ ] ;
Original file line number Diff line number Diff line change @@ -87,6 +87,10 @@ async function verifyRedisConnection(container: StartedRedisContainer) {
8787 } ,
8888 } ) ;
8989
90+ redis . on ( "error" , ( error ) => {
91+ // swallow the error
92+ } ) ;
93+
9094 try {
9195 await redis . ping ( ) ;
9296 } finally {
You can’t perform that action at this time.
0 commit comments