Skip to content

Commit

Permalink
IWF-357: Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lwolczynski committed Jan 3, 2025
1 parent 3520331 commit 20e0e22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iwf/worker_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def handle_workflow_worker_rpc(
wf_type = request.workflow_type
rpc_info = self._registry.get_rpc_infos(wf_type)[request.rpc_name]

internal_channel_types = self._registry.get_internal_channel_types(wf_type)
internal_channel_types = self._registry.get_internal_channel_type_store(wf_type)
signal_channel_types = self._registry.get_signal_channel_types(wf_type)
data_attributes_types = self._registry.get_data_attribute_types(wf_type)

Expand Down Expand Up @@ -141,7 +141,7 @@ def handle_workflow_state_wait_until(
state = self._registry.get_workflow_state_with_check(
wf_type, request.workflow_state_id
)
internal_channel_types = self._registry.get_internal_channel_types(wf_type)
internal_channel_types = self._registry.get_internal_channel_type_store(wf_type)
signal_channel_types = self._registry.get_signal_channel_types(wf_type)
data_attributes_types = self._registry.get_data_attribute_types(wf_type)

Expand Down Expand Up @@ -187,7 +187,7 @@ def handle_workflow_state_execute(
state = self._registry.get_workflow_state_with_check(
wf_type, request.workflow_state_id
)
internal_channel_types = self._registry.get_internal_channel_types(wf_type)
internal_channel_types = self._registry.get_internal_channel_type_store(wf_type)
signal_channel_types = self._registry.get_signal_channel_types(wf_type)
data_attributes_types = self._registry.get_data_attribute_types(wf_type)
context = _from_idl_context(request.context)
Expand Down

0 comments on commit 20e0e22

Please sign in to comment.