Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1676,8 +1676,8 @@ worker = Worker(
### Workflow Replay

Given a workflow's history, it can be replayed locally to check for things like non-determinism errors. For example,
assuming `history_str` is populated with a JSON string history either exported from the web UI or from `tctl`, the
following function will replay it:
assuming `history_str` is populated with a JSON string history either exported from the web UI or from the
`Temporal CLI`, the following function will replay it:

```python
from temporalio.client import WorkflowHistory
Expand Down
2 changes: 1 addition & 1 deletion temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3355,7 +3355,7 @@ def from_json(
) -> WorkflowHistory:
"""Construct a WorkflowHistory from an ID and a json dump of history.

This is built to work both with Temporal UI/tctl JSON as well as
This is built to work both with Temporal UI/CLI JSON as well as
:py:meth:`to_json` even though they are slightly different.

Args:
Expand Down
2 changes: 1 addition & 1 deletion temporalio/worker/_replayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ async def replay_workflow(
Args:
history: The history to replay. Can be fetched directly, or use
:py:meth:`temporalio.client.WorkflowHistory.from_json` to parse
a history downloaded via ``tctl`` or the web UI.
a history downloaded via ``Temporal CLI`` or the web UI.
raise_on_replay_failure: If ``True`` (the default), this will raise
a :py:attr:`WorkflowReplayResult.replay_failure` if it is
present.
Expand Down