Skip to content

Commit e026399

Browse files
committed
review comments
1 parent 4bf2cc0 commit e026399

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/conductor/client/http/api/workflow_resource_api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3076,17 +3076,17 @@ def execute_workflow_with_return_strategy(self, body, name, version, **kwargs):
30763076
"""
30773077
kwargs['_return_http_data_only'] = True
30783078
if kwargs.get('async_req'):
3079-
return self.execute_workflow_reactive_with_http_info(body, name, version, **kwargs) # noqa: E501
3079+
return self.execute_workflow_with_return_strategy_with_http_info(body, name, version, **kwargs) # noqa: E501
30803080
else:
3081-
(data) = self.execute_workflow_reactive_with_http_info(body, name, version, **kwargs) # noqa: E501
3081+
(data) = self.execute_workflow_with_return_strategy_with_http_info(body, name, version, **kwargs) # noqa: E501
30823082
return data
30833083

3084-
def execute_workflow_reactive_with_http_info(self, body, name, version, **kwargs): # noqa: E501
3084+
def execute_workflow_with_return_strategy_with_http_info(self, body, name, version, **kwargs): # noqa: E501
30853085
"""Execute a workflow synchronously with reactive response # noqa: E501
30863086
30873087
This method makes a synchronous HTTP request by default. To make an
30883088
asynchronous HTTP request, please pass async_req=True
3089-
>>> thread = api.execute_workflow_reactive_with_http_info(body, name, version, async_req=True)
3089+
>>> thread = api.execute_workflow_with_return_strategy_with_http_info(body, name, version, async_req=True)
30903090
>>> result = thread.get()
30913091
30923092
:param async_req bool

0 commit comments

Comments
 (0)