@trigger.dev/core 0.0.0-v3-canary-20240322104917 → 0.0.0-v3-canary-20240322110240

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/v3/index.mjs CHANGED
@@ -2768,6 +2768,11 @@ var _DevRuntimeManager = class _DevRuntimeManager {
2768
2768
  };
2769
2769
  }
2770
2770
  resumeTask(completion, execution) {
2771
+ console.log(JSON.stringify({
2772
+ message: "devRuntimeManager resumeTask",
2773
+ runId: execution.run.id,
2774
+ taskWaitIds: Array.from(this._taskWaits.keys())
2775
+ }));
2771
2776
  const wait = this._taskWaits.get(execution.run.id);
2772
2777
  if (!wait) {
2773
2778
  return;