We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 239e2b2 commit 06a7899Copy full SHA for 06a7899
packages/cli-v3/src/entryPoints/managed/poller.ts
@@ -34,6 +34,11 @@ export class RunExecutionSnapshotPoller {
34
35
this.poller = new IntervalService({
36
onInterval: async () => {
37
+ if (!this.enabled) {
38
+ this.sendDebugLog("poller disabled, skipping snapshot change handler (pre)");
39
+ return;
40
+ }
41
+
42
this.sendDebugLog("polling for latest snapshot");
43
44
const response = await this.httpClient.getRunExecutionData(this.runFriendlyId);
@@ -44,7 +49,7 @@ export class RunExecutionSnapshotPoller {
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;
54
55
0 commit comments