Skip to content

Commit

Permalink
IWF-397: Add channel sizes data
Browse files Browse the repository at this point in the history
# Conflicts:
#	iwf/communication.py
#	iwf/tests/test_signal.py
#	iwf/worker_service.py
  • Loading branch information
lwolczynski committed Jan 7, 2025
1 parent a85eb32 commit bb3282f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iwf/tests/test_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_simple_rpc(self):

def test_complicated_rpc(self):
wf_id = f"{inspect.currentframe().f_code.co_name}-{time.time_ns()}"
self.client.start_workflow(RPCWorkflow, wf_id, 10)
self.client.start_workflow(RPCWorkflow, wf_id, 100)
self.client.invoke_rpc(wf_id, RPCWorkflow.test_rpc_persistence_write, 100)
res = self.client.invoke_rpc(wf_id, RPCWorkflow.test_rpc_persistence_read)
assert res == 100
Expand Down
2 changes: 1 addition & 1 deletion iwf/tests/worker_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# NOTE: set this to true when debugging(using breakpoints)
# so that it keep the thread running so that we can see the error in history
debug_mode: bool = False
debug_mode: bool = True

registry = Registry()

Expand Down

0 comments on commit bb3282f

Please sign in to comment.