We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When performing a batch reset on completed workflows, sometimes they end up in terminated state.
I have not properly investigated yet, but it felt incorrect. It may not be specific to CLI, but I want to have a ticket open for it.
Create a workflow with
import asyncio from datetime import timedelta from temporalio import activity, workflow from dan.utils.client import start_workflow @activity.defn async def my_activity(name: str) -> str: return f"Hello, {name}!" activities = [my_activity] @workflow.defn class Workflow: def __init__(self): self.received_signal = False self.received_update = False @workflow.run async def run(self) -> str: await workflow.wait_condition( lambda: self.received_signal and self.received_update ) return "workflow-result" @workflow.signal def my_signal(self) -> None: self.received_signal = True @workflow.update async def my_update(self) -> None: await workflow.execute_activity( my_activity, "update", start_to_close_timeout=timedelta(seconds=10) ) self.received_update = True async def main(): wf_handle = await start_workflow(Workflow.run) print("workflow handle:", wf_handle) await wf_handle.signal(Workflow.my_signal) await wf_handle.execute_update(Workflow.my_update) print("workflow result:", await wf_handle.result()) if __name__ == "__main__": asyncio.run(main())
Then issue this command (it can be repeated; the number of workflows grows exponentially in doing so)
temporal workflow reset --type FirstWorkflowTask --reason 'testing' --query "WorkflowType STARTS_WITH ''"
Sooner or later, one of the workflows will be in terminated state, with the UI saying terminated by "history resetter".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When performing a batch reset on completed workflows, sometimes they end up in terminated state.
I have not properly investigated yet, but it felt incorrect. It may not be specific to CLI, but I want to have a ticket open for it.
Minimal Reproduction
Create a workflow with
Python workflow
Then issue this command (it can be repeated; the number of workflows grows exponentially in doing so)
Sooner or later, one of the workflows will be in terminated state, with the UI saying terminated by "history resetter".
The text was updated successfully, but these errors were encountered: