File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
ext/dapr-ext-workflow/dapr/ext/workflow/aio Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22
3- from .dapr_workflow_client import DaprWorkflowClientAsync
4-
5- # Public alias to mirror sync naming under aio namespace
6- DaprWorkflowClient = DaprWorkflowClientAsync
3+ from .dapr_workflow_client import DaprWorkflowClient
74
85__all__ = [
9- 'DaprWorkflowClientAsync' ,
106 'DaprWorkflowClient' ,
117]
Original file line number Diff line number Diff line change 3636TOutput = TypeVar ('TOutput' )
3737
3838
39- class DaprWorkflowClientAsync :
39+ class DaprWorkflowClient :
4040 """Async client for managing Dapr Workflow instances.
4141
4242 This uses a gRPC async connection to send commands directly to the workflow engine,
@@ -56,7 +56,7 @@ def __init__(
5656 except ValueError as error :
5757 raise DaprInternalError (f'{ error } ' ) from error
5858
59- self ._logger = Logger ('DaprWorkflowClientAsync ' , logger_options )
59+ self ._logger = Logger ('DaprWorkflowClient ' , logger_options )
6060
6161 metadata = tuple ()
6262 if settings .DAPR_API_TOKEN :
You can’t perform that action at this time.
0 commit comments