@@ -106,7 +106,7 @@ Create a `quickstart.py` with the following:
106106``` python
107107from conductor.client.automator.task_handler import TaskHandler
108108from conductor.client.configuration.configuration import Configuration
109- from conductor.client.orkes_clients import OrkesClients # works with OSS Conductor and Orkes Conductor
109+ from conductor.client.orkes_clients import ConductorClients # OrkesClients is an alias for the same class
110110from conductor.client.workflow.conductor_workflow import ConductorWorkflow
111111from conductor.client.worker.worker_task import worker_task
112112
@@ -121,7 +121,7 @@ def main():
121121 # Configure the SDK (reads CONDUCTOR_SERVER_URL / CONDUCTOR_AUTH_* from env).
122122 config = Configuration()
123123
124- clients = OrkesClients (configuration = config)
124+ clients = ConductorClients (configuration = config)
125125 executor = clients.get_workflow_executor()
126126
127127 # Build a workflow with the >> operator.
@@ -329,10 +329,10 @@ Full lifecycle control — start, execute, pause, resume, terminate, retry, rest
329329` ` ` python
330330from conductor.client.configuration.configuration import Configuration
331331from conductor.client.http.models import StartWorkflowRequest, RerunWorkflowRequest, TaskResult
332- from conductor.client.orkes_clients import OrkesClients
332+ from conductor.client.orkes_clients import ConductorClients
333333
334334config = Configuration ()
335- clients = OrkesClients (configuration=config)
335+ clients = ConductorClients (configuration=config)
336336workflow_client = clients.get_workflow_client ()
337337task_client = clients.get_task_client ()
338338executor = clients.get_workflow_executor ()
0 commit comments