File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/cli-v3/src/entryPoints/managed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ export class RunExecutionSnapshotPoller {
34
34
35
35
this . poller = new IntervalService ( {
36
36
onInterval : async ( ) => {
37
+ if ( ! this . enabled ) {
38
+ this . sendDebugLog ( "poller disabled, skipping snapshot change handler (pre)" ) ;
39
+ return ;
40
+ }
41
+
37
42
this . sendDebugLog ( "polling for latest snapshot" ) ;
38
43
39
44
const response = await this . httpClient . getRunExecutionData ( this . runFriendlyId ) ;
@@ -44,7 +49,7 @@ export class RunExecutionSnapshotPoller {
44
49
}
45
50
46
51
if ( ! this . enabled ) {
47
- this . sendDebugLog ( "poller disabled, skipping snapshot change handler" ) ;
52
+ this . sendDebugLog ( "poller disabled, skipping snapshot change handler (post) " ) ;
48
53
return ;
49
54
}
50
55
You can’t perform that action at this time.
0 commit comments