conductor-python 1.3.8__py3-none-any.whl → 1.3.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- conductor/client/automator/async_task_runner.py +4 -4
- conductor/client/automator/task_runner.py +4 -4
- {conductor_python-1.3.8.dist-info → conductor_python-1.3.9.dist-info}/METADATA +6 -2
- {conductor_python-1.3.8.dist-info → conductor_python-1.3.9.dist-info}/RECORD +5 -5
- {conductor_python-1.3.8.dist-info → conductor_python-1.3.9.dist-info}/WHEEL +0 -0
|
@@ -248,7 +248,7 @@ class AsyncTaskRunner:
|
|
|
248
248
|
schema_client = OrkesSchemaClient(self.configuration)
|
|
249
249
|
except Exception as e:
|
|
250
250
|
# Schema client not available (server doesn't support schemas)
|
|
251
|
-
logger.
|
|
251
|
+
logger.debug(f"⚠ Schema registry not available on server - task will be registered without schemas")
|
|
252
252
|
logger.debug(f" Error: {e}")
|
|
253
253
|
schema_registry_available = False
|
|
254
254
|
schema_client = None
|
|
@@ -273,7 +273,7 @@ class AsyncTaskRunner:
|
|
|
273
273
|
except Exception as e:
|
|
274
274
|
# Check if this is a 404 (API endpoint doesn't exist on server)
|
|
275
275
|
if hasattr(e, 'status') and e.status == 404:
|
|
276
|
-
logger.
|
|
276
|
+
logger.debug(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
|
|
277
277
|
schema_registry_available = False
|
|
278
278
|
input_schema_name = None
|
|
279
279
|
else:
|
|
@@ -298,7 +298,7 @@ class AsyncTaskRunner:
|
|
|
298
298
|
except Exception as e:
|
|
299
299
|
# Check if this is a 404 (API endpoint doesn't exist on server)
|
|
300
300
|
if hasattr(e, 'status') and e.status == 404:
|
|
301
|
-
logger.
|
|
301
|
+
logger.debug(f"⚠ Schema registry API not available on server (404)")
|
|
302
302
|
schema_registry_available = False
|
|
303
303
|
else:
|
|
304
304
|
# Other error - log and continue without this schema
|
|
@@ -393,7 +393,7 @@ class AsyncTaskRunner:
|
|
|
393
393
|
|
|
394
394
|
# Print success message with link
|
|
395
395
|
task_def_url = f"{self.configuration.ui_host}/taskDef/{task_name}"
|
|
396
|
-
logger.
|
|
396
|
+
logger.debug(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
|
|
397
397
|
logger.debug(f" View at: {task_def_url}")
|
|
398
398
|
|
|
399
399
|
if input_schema_name or output_schema_name:
|
|
@@ -217,7 +217,7 @@ class TaskRunner:
|
|
|
217
217
|
schema_client = OrkesSchemaClient(self.configuration)
|
|
218
218
|
except Exception as e:
|
|
219
219
|
# Schema client not available (server doesn't support schemas)
|
|
220
|
-
logger.
|
|
220
|
+
logger.debug(f"⚠ Schema registry not available on server - task will be registered without schemas")
|
|
221
221
|
logger.debug(f" Error: {e}")
|
|
222
222
|
schema_registry_available = False
|
|
223
223
|
schema_client = None
|
|
@@ -242,7 +242,7 @@ class TaskRunner:
|
|
|
242
242
|
except Exception as e:
|
|
243
243
|
# Check if this is a 404 (API endpoint doesn't exist on server)
|
|
244
244
|
if hasattr(e, 'status') and e.status == 404:
|
|
245
|
-
logger.
|
|
245
|
+
logger.debug(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
|
|
246
246
|
schema_registry_available = False
|
|
247
247
|
input_schema_name = None
|
|
248
248
|
else:
|
|
@@ -267,7 +267,7 @@ class TaskRunner:
|
|
|
267
267
|
except Exception as e:
|
|
268
268
|
# Check if this is a 404 (API endpoint doesn't exist on server)
|
|
269
269
|
if hasattr(e, 'status') and e.status == 404:
|
|
270
|
-
logger.
|
|
270
|
+
logger.debug(f"⚠ Schema registry API not available on server (404)")
|
|
271
271
|
schema_registry_available = False
|
|
272
272
|
else:
|
|
273
273
|
# Other error - log and continue without this schema
|
|
@@ -362,7 +362,7 @@ class TaskRunner:
|
|
|
362
362
|
|
|
363
363
|
# Print success message with link
|
|
364
364
|
task_def_url = f"{self.configuration.ui_host}/taskDef/{task_name}"
|
|
365
|
-
logger.
|
|
365
|
+
logger.debug(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
|
|
366
366
|
logger.debug(f" View at: {task_def_url}")
|
|
367
367
|
|
|
368
368
|
if input_schema_name or output_schema_name:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: conductor-python
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.9
|
|
4
4
|
Summary: Python SDK for working with https://github.com/conductor-oss/conductor
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Author: Orkes
|
|
@@ -94,9 +94,13 @@ conductor server start
|
|
|
94
94
|
## Install the SDK
|
|
95
95
|
|
|
96
96
|
```shell
|
|
97
|
+
python3 -m venv conductor-env
|
|
98
|
+
source conductor-env/bin/activate # Windows: conductor-env\Scripts\activate
|
|
97
99
|
pip install conductor-python
|
|
98
100
|
```
|
|
99
101
|
|
|
102
|
+
> **Already in a virtual environment?** Skip the `venv` step and run `pip install conductor-python` directly. On macOS, Windows, or in containers where system Python is not locked down, you can also install globally.
|
|
103
|
+
|
|
100
104
|
## 60-Second Quickstart
|
|
101
105
|
|
|
102
106
|
**Step 1: Create a workflow**
|
|
@@ -197,7 +201,7 @@ python quickstart.py
|
|
|
197
201
|
> See [Configuration](#configuration) for details.
|
|
198
202
|
|
|
199
203
|
That's it — you just defined a worker, built a workflow, and executed it. Open the Conductor UI (default:
|
|
200
|
-
[http://localhost:
|
|
204
|
+
[http://localhost:8080](http://localhost:8080)) to see the execution.
|
|
201
205
|
|
|
202
206
|
---
|
|
203
207
|
|
|
@@ -6,10 +6,10 @@ conductor/client/ai/integrations.py,sha256=O-oCAyUXQbJq3e0f8SP_aOCuoWYcS1a-m5Nvf
|
|
|
6
6
|
conductor/client/ai/orchestrator.py,sha256=GGPUgnvilRKSQy05voU6H0uFQcxynt66M7-8QrNFnZw,5330
|
|
7
7
|
conductor/client/authorization_client.py,sha256=Hfoyv7JyO6zGnKrtLWBO8P7Y6E7E2J2Equ7LUZ0J0rw,9406
|
|
8
8
|
conductor/client/automator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
conductor/client/automator/async_task_runner.py,sha256=
|
|
9
|
+
conductor/client/automator/async_task_runner.py,sha256=iA7uD7AnKM1WGsrtZxVyAejkSyiGd-iHwpN8ntz1YJs,46180
|
|
10
10
|
conductor/client/automator/json_schema_generator.py,sha256=Rgi74jBctJXgqv3SQl9gi062tQvIQRrFwVXIIztig6E,9718
|
|
11
11
|
conductor/client/automator/task_handler.py,sha256=1BtAIoHzybg3sNgGJzw26TnV4UhZ0EdwWcxr3ZhIazU,27010
|
|
12
|
-
conductor/client/automator/task_runner.py,sha256=
|
|
12
|
+
conductor/client/automator/task_runner.py,sha256=p48DKOTwj3pDqX32lsvazJImo-8OnKmq9iu-J_XA3l0,48792
|
|
13
13
|
conductor/client/automator/utils.py,sha256=IenXCf_LLORSCD06XBOE_IbVu4yaOiELxH46-xNe7dE,7593
|
|
14
14
|
conductor/client/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
conductor/client/configuration/configuration.py,sha256=EQWSrzZVyF6KBoIVZr7KGOkW7Y2lVkTmkDyydN9qcUQ,5455
|
|
@@ -236,6 +236,6 @@ conductor/client/workflow/task/timeout_policy.py,sha256=JzoZGtCQ4scykATG1oXksHTS
|
|
|
236
236
|
conductor/client/workflow/task/wait_for_webhook_task.py,sha256=irmcSu-sKoR8AHff_KCsQYTn2RIwXdize9bck0Jc4Uc,1546
|
|
237
237
|
conductor/client/workflow/task/wait_task.py,sha256=yHfuFf7N0HhNMP4LHU6_sw2AOVDAcnCb-6cS9sRoeW0,1618
|
|
238
238
|
conductor/client/workflow_client.py,sha256=S5f9DP4LUM3HLpxIT_g2pWJ4v75GeLN273bp5iQBfr0,4279
|
|
239
|
-
conductor_python-1.3.
|
|
240
|
-
conductor_python-1.3.
|
|
241
|
-
conductor_python-1.3.
|
|
239
|
+
conductor_python-1.3.9.dist-info/METADATA,sha256=r1XQpuIcOSA2i98m6rugRzCx2pk1cVevUjgTdS094KI,23925
|
|
240
|
+
conductor_python-1.3.9.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
|
|
241
|
+
conductor_python-1.3.9.dist-info/RECORD,,
|
|
File without changes
|