Skip to content

Commit b269e0c

Browse files
committed
review comments
1 parent 3593c0e commit b269e0c

7 files changed

Lines changed: 40 additions & 633 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3053,12 +3053,12 @@ def update_workflow_and_task_state_with_http_info(self, body, request_id, workfl
30533053
_request_timeout=params.get('_request_timeout'),
30543054
collection_formats=collection_formats)
30553055

3056-
def execute_workflow_cr(self, body, name, version, **kwargs): # noqa: E501
3056+
def execute_workflow_with_return_strategy(self, body, name, version, **kwargs): # noqa: E501
30573057
"""Execute a workflow synchronously with reactive response # noqa: E501
30583058
30593059
This method makes a synchronous HTTP request by default. To make an
30603060
asynchronous HTTP request, please pass async_req=True
3061-
>>> thread = api.execute_workflow_cr(body,name,version)
3061+
>>> thread = api.execute_workflow_with_return_strategy(body,name,version)
30623062
>>> result = thread.get()
30633063
30643064
:param async_req bool

src/conductor/client/http/models/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
from conductor.client.http.models.integration_api import IntegrationApi
5656
from conductor.client.http.models.state_change_event import StateChangeEvent, StateChangeConfig, StateChangeEventType
5757
from conductor.client.http.models.workflow_task import CacheConfig
58-
from conductor.client.http.models.signal_response_1 import SignalResponse, TaskStatus
5958
from conductor.client.http.models.schema_def import SchemaDef
6059
from conductor.client.http.models.schema_def import SchemaType
6160
from conductor.client.http.models.signal_response import SignalResponse, TaskStatus

0 commit comments

Comments
 (0)