You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!context.df.isReplaying) context.log("Calling F1.");
254
+
yieldcontext.df.callActivity("F1");
255
+
if (!context.df.isReplaying) context.log("Calling F2.");
256
+
yieldcontext.df.callActivity("F2");
257
+
if (!context.df.isReplaying) context.log("Calling F3.");
258
+
yieldcontext.df.callActivity("F3");
259
+
context.log("Done!");
260
+
});
261
+
```
262
+
263
+
> [!NOTE]
264
+
> The `isReplaying` check suppresses duplicate logs caused by orchestrator replay. It doesn't suppress duplicate logs caused by full re-execution (for example, host restarts, long local debugging sessions, or queue message visibility timeouts). In those cases, you might still see repeated log lines with the same orchestration instance ID.
0 commit comments