@@ -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