Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
format
Signed-off-by: Tim Li <[email protected]>
  • Loading branch information
timl3136 committed Oct 30, 2025
commit f39f4032e7fa7fd0efa091fddba02f32196d838f
4 changes: 3 additions & 1 deletion cadence/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ async def signal_with_start_workflow(
options = _validate_and_apply_defaults(StartWorkflowOptions(**options_kwargs))

# Build the start workflow request
start_request = await self._build_start_workflow_request(workflow, args, options)
start_request = await self._build_start_workflow_request(
workflow, args, options
)

# Encode signal input
signal_payload = None
Expand Down
1 change: 1 addition & 0 deletions tests/integration_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ async def test_workflow_stub_start_and_describe(helper: CadenceHelper):
f"task_start_to_close_timeout mismatch: expected {task_timeout.total_seconds()}s, got {task_timeout_seconds}s"
)


# trying parametrized test for table test
@pytest.mark.parametrize(
"test_case,workflow_id,start_first,expected_same_run",
Expand Down