We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent accf9f7 commit 0b0b7daCopy full SHA for 0b0b7da
packages/cli-v3/src/entryPoints/managed-run-controller.ts
@@ -401,6 +401,15 @@ class ManagedRunController {
401
this.socket.on("run:notify", async ({ version, run }) => {
402
console.log("[ManagedRunController] Received run notification", { version, run });
403
404
+ if (!this.runFriendlyId) {
405
+ logger.debug("[ManagedRunController] Ignoring notification, no local run ID", {
406
+ runId: run.friendlyId,
407
+ currentRunId: this.runFriendlyId,
408
+ currentSnapshotId: this.snapshotFriendlyId,
409
+ });
410
+ return;
411
+ }
412
+
413
if (run.friendlyId !== this.runFriendlyId) {
414
console.log("[ManagedRunController] Ignoring notification for different run", {
415
runId: run.friendlyId,
0 commit comments