File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1676,8 +1676,8 @@ worker = Worker(
16761676### Workflow Replay
16771677
16781678Given a workflow's history, it can be replayed locally to check for things like non-determinism errors. For example,
1679- assuming ` history_str ` is populated with a JSON string history either exported from the web UI or from ` tctl ` , the
1680- following function will replay it:
1679+ assuming ` history_str ` is populated with a JSON string history either exported from the web UI or from the
1680+ ` Temporal CLI ` , the following function will replay it:
16811681
16821682``` python
16831683from temporalio.client import WorkflowHistory
Original file line number Diff line number Diff line change @@ -3355,7 +3355,7 @@ def from_json(
33553355 ) -> WorkflowHistory :
33563356 """Construct a WorkflowHistory from an ID and a json dump of history.
33573357
3358- This is built to work both with Temporal UI/tctl JSON as well as
3358+ This is built to work both with Temporal UI/CLI JSON as well as
33593359 :py:meth:`to_json` even though they are slightly different.
33603360
33613361 Args:
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ async def replay_workflow(
112112 Args:
113113 history: The history to replay. Can be fetched directly, or use
114114 :py:meth:`temporalio.client.WorkflowHistory.from_json` to parse
115- a history downloaded via ``tctl `` or the web UI.
115+ a history downloaded via ``Temporal CLI `` or the web UI.
116116 raise_on_replay_failure: If ``True`` (the default), this will raise
117117 a :py:attr:`WorkflowReplayResult.replay_failure` if it is
118118 present.
You can’t perform that action at this time.
0 commit comments