File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -527,7 +527,10 @@ class TaskCoordinator {
527
527
}
528
528
529
529
if ( ! lazyAttempt . success ) {
530
- logger . error ( "failed to get lazy attempt payload" , { runId : socket . data . runId } ) ;
530
+ logger . error ( "failed to get lazy attempt payload" , {
531
+ runId : socket . data . runId ,
532
+ reason : lazyAttempt . reason ,
533
+ } ) ;
531
534
532
535
await crashRun ( {
533
536
name : "ReadyForLazyAttemptError" ,
@@ -1007,7 +1010,10 @@ class TaskCoordinator {
1007
1010
} ) ;
1008
1011
1009
1012
if ( ! createAttempt ?. success ) {
1010
- logger . debug ( "no ack while creating attempt" , message ) ;
1013
+ logger . debug ( "no ack while creating attempt" , {
1014
+ runId : message . runId ,
1015
+ reason : createAttempt ?. reason ,
1016
+ } ) ;
1011
1017
callback ( { success : false , reason : createAttempt ?. reason } ) ;
1012
1018
return ;
1013
1019
}
You can’t perform that action at this time.
0 commit comments