conductor-python 1.4.0__tar.gz → 1.5.0__tar.gz
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_python-1.4.0 → conductor_python-1.5.0}/PKG-INFO +1 -1
- {conductor_python-1.4.0 → conductor_python-1.5.0}/pyproject.toml +1 -1
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/task_handler.py +56 -9
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/worker.py +120 -1
- {conductor_python-1.4.0 → conductor_python-1.5.0}/README.md +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/ai/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/ai/configuration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/ai/integrations.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/ai/orchestrator.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/authorization_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/async_task_runner.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/json_schema_generator.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/lease_tracker.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/task_runner.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/utils.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/configuration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/settings/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/settings/authentication_settings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/settings/metrics_settings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/context/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/context/task_context.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/conductor_event.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/event_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/event_dispatcher.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/listener_register.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/listeners.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/queue/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/queue/kafka_queue_configuration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/queue/queue_configuration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/queue/queue_worker_configuration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/sync_event_dispatcher.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/sync_listener_register.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/task_events.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/task_runner_events.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/workflow_events.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/exceptions/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/exceptions/api_error.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/exceptions/api_exception_handler.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/helpers/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/helpers/helper.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/application_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/async_task_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/authorization_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/event_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/gateway_auth_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/group_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/integration_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/metadata_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/prompt_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/role_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/scheduler_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/schema_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/secret_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/service_registry_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/task_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/token_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/user_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/workflow_bulk_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/workflow_resource_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/async_api_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/async_rest.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/action.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/auditable.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/authentication_config.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/authorization_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/bulk_response.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/circuit_breaker_transition_response.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/conductor_application.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/conductor_user.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/correlation_ids_search_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/create_or_update_application_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/create_or_update_role_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/event_handler.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/external_storage_location.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/generate_token_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/group.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/health.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/health_check_status.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration_api_update.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration_def.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration_update.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/permission.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/poll_data.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/prompt_template.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/prompt_test_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/proto_registry_entry.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/rate_limit.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/request_param.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/rerun_workflow_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/response.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/role.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/save_schedule_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/schema_def.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/scrollable_search_result_workflow_summary.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/search_result_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/search_result_task_summary.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/search_result_workflow.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/search_result_workflow_schedule_execution_model.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/search_result_workflow_summary.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/service_method.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/service_registry.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/signal_response.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/skip_task_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/start_workflow.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/start_workflow_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/state_change_event.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/sub_workflow_params.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/subject_ref.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/tag_object.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/tag_string.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/target_ref.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_def.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_details.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_exec_log.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_result.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_result_status.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_summary.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/terminate_workflow.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/token.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/update_workflow_variables.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/upsert_group_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/upsert_user_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_def.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_message.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_run.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_schedule.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_schedule_execution_model.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_state_update.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_status.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_summary.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_tag.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_test_request.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/rest.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/thread.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/integration_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/metadata_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/api/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/api/tags_api.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/access_key.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/access_key_status.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/access_type.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/created_access_key.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/granted_permission.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/metadata_tag.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/models/ratelimit_tag.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_authorization_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_base_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_integration_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_metadata_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_prompt_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_scheduler_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_schema_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_secret_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_service_registry_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_task_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes/orkes_workflow_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/orkes_clients.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/prompt_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/scheduler_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/schema_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/secret_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/service_registry_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/task_client.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/canonical_metrics_collector.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/legacy_metrics_collector.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/metrics_collector.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/metrics_collector_base.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/metrics_factory.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/model/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/model/metric_documentation.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/model/metric_label.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/telemetry/model/metric_name.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/exception.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/worker_config.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/worker_interface.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/worker_loader.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/worker/worker_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/conductor_workflow.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/executor/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/executor/workflow_executor.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/do_while_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/dynamic_fork_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/dynamic_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/event_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/fork_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/get_document.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/http_poll_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/http_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/human_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/inline.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/javascript_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/join_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/json_jq_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/kafka_publish.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/kafka_publish_input.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/call_mcp_tool.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/chat_message.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/generate_audio.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/generate_image.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/list_mcp_tools.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_chat_complete.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_generate_embeddings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_index_documents.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_index_text.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_query_embeddings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_search_embeddings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_search_index.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_store_embeddings.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/llm_text_complete.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/tool_call.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/tool_spec.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/utils/__init__.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/utils/embedding_model.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/llm_tasks/utils/prompt.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/pull_workflow_messages_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/set_variable_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/simple_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/start_workflow_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/sub_workflow_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/switch_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/task_type.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/terminate_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/timeout_policy.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/wait_for_webhook_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow/task/wait_task.py +0 -0
- {conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/workflow_client.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "conductor-python"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.5.0" # Do not change! Placeholder. Real version injected during build (edited)
|
|
8
8
|
description = "Python SDK for working with https://github.com/conductor-oss/conductor"
|
|
9
9
|
authors = ["Orkes <developers@orkes.io>"]
|
|
10
10
|
license = "Apache-2.0"
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/task_handler.py
RENAMED
|
@@ -4,10 +4,11 @@ import importlib
|
|
|
4
4
|
import inspect
|
|
5
5
|
import logging
|
|
6
6
|
import os
|
|
7
|
+
import pickle
|
|
7
8
|
import signal
|
|
8
9
|
import threading
|
|
9
10
|
import time
|
|
10
|
-
from multiprocessing import Process, freeze_support, Queue, set_start_method
|
|
11
|
+
from multiprocessing import Process, freeze_support, Queue, set_start_method, get_start_method
|
|
11
12
|
from sys import platform
|
|
12
13
|
from typing import List, Optional, Any, Dict
|
|
13
14
|
|
|
@@ -37,12 +38,25 @@ _VALID_MP_START_METHODS = {"spawn", "fork", "forkserver"}
|
|
|
37
38
|
_mp_fork_set = False
|
|
38
39
|
if not _mp_fork_set:
|
|
39
40
|
try:
|
|
40
|
-
#
|
|
41
|
-
#
|
|
42
|
-
#
|
|
43
|
-
#
|
|
44
|
-
#
|
|
45
|
-
|
|
41
|
+
# Default start method: "spawn" on every platform.
|
|
42
|
+
#
|
|
43
|
+
# fork() is fundamentally unsafe in a process that holds native
|
|
44
|
+
# framework state or non-main threads:
|
|
45
|
+
# - macOS: Apple frameworks (CFNetwork, Security, libdispatch) may
|
|
46
|
+
# SIGSEGV in forked children, producing silently-restarting worker
|
|
47
|
+
# processes with exitcode=-11. CPython switched its own macOS
|
|
48
|
+
# default to spawn in 3.8 for the same reason (bpo-33725).
|
|
49
|
+
# - all POSIX: forking while another thread holds a lock (e.g. the
|
|
50
|
+
# prometheus_client module-level lock, or the TaskHandler monitor
|
|
51
|
+
# thread restarting a worker) leaves that lock permanently held in
|
|
52
|
+
# the child -> silent deadlock.
|
|
53
|
+
# Workers (including the @worker_task decorator path) are pickle-safe,
|
|
54
|
+
# so spawn works everywhere. Deployments that rely on fork's
|
|
55
|
+
# copy-on-write inheritance can opt back in with
|
|
56
|
+
# CONDUCTOR_MP_START_METHOD=fork (re-exposing the hazards above).
|
|
57
|
+
# NOTE: spawn requires the standard `if __name__ == "__main__":` guard
|
|
58
|
+
# in the entrypoint script.
|
|
59
|
+
_default_method = "spawn"
|
|
46
60
|
_method = os.environ.get("CONDUCTOR_MP_START_METHOD", "").strip().lower() or _default_method
|
|
47
61
|
if _method not in _VALID_MP_START_METHODS:
|
|
48
62
|
logger.warning(
|
|
@@ -341,8 +355,26 @@ class TaskHandler:
|
|
|
341
355
|
logger.info("Starting worker processes...")
|
|
342
356
|
freeze_support()
|
|
343
357
|
self._monitor_stop_event.clear()
|
|
344
|
-
|
|
345
|
-
|
|
358
|
+
try:
|
|
359
|
+
self.__start_task_runner_processes()
|
|
360
|
+
self.__start_metrics_provider_process()
|
|
361
|
+
except (TypeError, pickle.PicklingError, AttributeError) as e:
|
|
362
|
+
# Under the 'spawn'/'forkserver' start methods, Process arguments
|
|
363
|
+
# are pickled at start(); unpicklable state fails here. Clean up
|
|
364
|
+
# everything already started - otherwise the non-daemon logger
|
|
365
|
+
# subprocess keeps the interpreter alive forever after the
|
|
366
|
+
# exception (observed as a hang after "cannot pickle
|
|
367
|
+
# '_thread.lock' object").
|
|
368
|
+
logger.error(
|
|
369
|
+
"Failed to start worker processes with start method %r: %s. "
|
|
370
|
+
"Workers must be defined at module level (not nested inside "
|
|
371
|
+
"functions), and configuration, metrics_settings and "
|
|
372
|
+
"event_listeners must be picklable. "
|
|
373
|
+
"See https://github.com/conductor-oss/conductor-python/issues/264",
|
|
374
|
+
get_start_method(allow_none=True), e,
|
|
375
|
+
)
|
|
376
|
+
self.stop_processes()
|
|
377
|
+
raise
|
|
346
378
|
self.__start_monitor_thread()
|
|
347
379
|
logger.info("Started all processes")
|
|
348
380
|
|
|
@@ -445,6 +477,21 @@ class TaskHandler:
|
|
|
445
477
|
worker = self.workers[i] if i < len(self.workers) else None
|
|
446
478
|
worker_name = worker.get_task_definition_name() if worker is not None else f"worker[{i}]"
|
|
447
479
|
logger.warning("Worker process exited (worker=%s, pid=%s, exitcode=%s)", worker_name, process.pid, exitcode)
|
|
480
|
+
if exitcode < 0:
|
|
481
|
+
# Negative exitcode == killed by signal (e.g. -11 is
|
|
482
|
+
# SIGSEGV). Under the 'fork' start method this is the
|
|
483
|
+
# classic symptom of fork-unsafe native libraries in the
|
|
484
|
+
# parent (Apple frameworks on macOS, numpy/Accelerate,
|
|
485
|
+
# grpc, ...).
|
|
486
|
+
logger.warning(
|
|
487
|
+
"Worker process %s was killed by signal %s. If this "
|
|
488
|
+
"repeats on every restart, the process is likely "
|
|
489
|
+
"crashing at startup: use the 'spawn' start method "
|
|
490
|
+
"(CONDUCTOR_MP_START_METHOD=spawn, the default) and "
|
|
491
|
+
"set PYTHONFAULTHANDLER=1 to capture the crashing "
|
|
492
|
+
"stack trace.",
|
|
493
|
+
worker_name, -exitcode,
|
|
494
|
+
)
|
|
448
495
|
if not self.restart_on_failure:
|
|
449
496
|
continue
|
|
450
497
|
self.__restart_worker_process(i)
|
|
@@ -2,8 +2,10 @@ from __future__ import annotations
|
|
|
2
2
|
import asyncio
|
|
3
3
|
import atexit
|
|
4
4
|
import dataclasses
|
|
5
|
+
import importlib
|
|
5
6
|
import inspect
|
|
6
7
|
import logging
|
|
8
|
+
import sys
|
|
7
9
|
import threading
|
|
8
10
|
import time
|
|
9
11
|
import traceback
|
|
@@ -275,6 +277,79 @@ class BackgroundEventLoop:
|
|
|
275
277
|
logger.debug("Background event loop stopped")
|
|
276
278
|
|
|
277
279
|
|
|
280
|
+
class _ExecuteFunctionReference:
|
|
281
|
+
"""Pickle surrogate for functions whose module-level name was rebound.
|
|
282
|
+
|
|
283
|
+
The ``@worker_task`` decorator registers the *original* function but rebinds
|
|
284
|
+
the module-level name to its wrapper. Standard pickle-by-reference then
|
|
285
|
+
fails with ``PicklingError: it's not the same object as module.name`` when
|
|
286
|
+
the ``spawn``/``forkserver`` start methods pickle Process arguments
|
|
287
|
+
(GitHub issues #264/#271).
|
|
288
|
+
|
|
289
|
+
Instead of the raw function we pickle ``(module, qualname, unwrap_depth)``
|
|
290
|
+
and re-resolve in the child process: import the module, walk the qualname,
|
|
291
|
+
then follow ``__wrapped__`` (set by ``functools.wraps``) ``unwrap_depth``
|
|
292
|
+
times to get back to the registered function.
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
__slots__ = ("module_name", "qualname", "unwrap_depth")
|
|
296
|
+
|
|
297
|
+
def __init__(self, module_name: str, qualname: str, unwrap_depth: int):
|
|
298
|
+
self.module_name = module_name
|
|
299
|
+
self.qualname = qualname
|
|
300
|
+
self.unwrap_depth = unwrap_depth
|
|
301
|
+
|
|
302
|
+
def resolve(self) -> Callable:
|
|
303
|
+
module = importlib.import_module(self.module_name)
|
|
304
|
+
obj: Any = module
|
|
305
|
+
for part in self.qualname.split("."):
|
|
306
|
+
obj = getattr(obj, part)
|
|
307
|
+
for _ in range(self.unwrap_depth):
|
|
308
|
+
obj = obj.__wrapped__
|
|
309
|
+
return obj
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
_MAX_UNWRAP_DEPTH = 32
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
def _importable_function_reference(func: Any) -> Optional[_ExecuteFunctionReference]:
|
|
316
|
+
"""Return a pickle surrogate for *func* if it needs one, else None.
|
|
317
|
+
|
|
318
|
+
None is returned when normal pickle-by-reference works (module-level
|
|
319
|
+
function whose name still points at itself) or when the function is not
|
|
320
|
+
resolvable by import at all (lambdas, closures, bound methods); in the
|
|
321
|
+
latter case pickling fails with the standard, descriptive pickle error.
|
|
322
|
+
"""
|
|
323
|
+
if not inspect.isfunction(func):
|
|
324
|
+
return None
|
|
325
|
+
module_name = getattr(func, "__module__", None)
|
|
326
|
+
qualname = getattr(func, "__qualname__", None)
|
|
327
|
+
if not module_name or not qualname or "<locals>" in qualname or "<lambda>" in qualname:
|
|
328
|
+
return None
|
|
329
|
+
module = sys.modules.get(module_name)
|
|
330
|
+
if module is None:
|
|
331
|
+
return None
|
|
332
|
+
obj: Any = module
|
|
333
|
+
try:
|
|
334
|
+
for part in qualname.split("."):
|
|
335
|
+
obj = getattr(obj, part)
|
|
336
|
+
except AttributeError:
|
|
337
|
+
return None
|
|
338
|
+
if obj is func:
|
|
339
|
+
# Plain module-level function: default pickling works, no surrogate.
|
|
340
|
+
return None
|
|
341
|
+
# The name was rebound (typically by @worker_task). Walk the wrapper chain
|
|
342
|
+
# to find the registered function and record how many hops it takes.
|
|
343
|
+
depth = 0
|
|
344
|
+
current = obj
|
|
345
|
+
while hasattr(current, "__wrapped__") and depth < _MAX_UNWRAP_DEPTH:
|
|
346
|
+
current = current.__wrapped__
|
|
347
|
+
depth += 1
|
|
348
|
+
if current is func:
|
|
349
|
+
return _ExecuteFunctionReference(module_name, qualname, depth)
|
|
350
|
+
return None
|
|
351
|
+
|
|
352
|
+
|
|
278
353
|
def is_callable_input_parameter_a_task(callable: ExecuteTaskFunction, object_type: Any) -> bool:
|
|
279
354
|
parameters = inspect.signature(callable).parameters
|
|
280
355
|
if len(parameters) != 1:
|
|
@@ -306,7 +381,11 @@ class Worker(WorkerInterface):
|
|
|
306
381
|
register_schema: bool = False
|
|
307
382
|
) -> Self:
|
|
308
383
|
super().__init__(task_definition_name)
|
|
309
|
-
|
|
384
|
+
# Lazily constructed (see the api_client property): an eager ApiClient
|
|
385
|
+
# holds an httpx.Client and threading locks, which made Worker
|
|
386
|
+
# unpicklable under the 'spawn' start method and initialized TLS state
|
|
387
|
+
# in the parent process before fork() (unsafe on macOS).
|
|
388
|
+
self._api_client = None
|
|
310
389
|
if poll_interval is None:
|
|
311
390
|
self.poll_interval = DEFAULT_POLLING_INTERVAL
|
|
312
391
|
else:
|
|
@@ -335,6 +414,46 @@ class Worker(WorkerInterface):
|
|
|
335
414
|
# Add thread lock for safe concurrent access to _pending_async_tasks
|
|
336
415
|
self._pending_tasks_lock = threading.Lock()
|
|
337
416
|
|
|
417
|
+
@property
|
|
418
|
+
def api_client(self) -> ApiClient:
|
|
419
|
+
"""ApiClient used for output serialization, created on first use.
|
|
420
|
+
|
|
421
|
+
Lazy so that Worker instances remain picklable (required by the
|
|
422
|
+
'spawn'/'forkserver' multiprocessing start methods) and so the parent
|
|
423
|
+
process never initializes HTTP/TLS state on behalf of workers.
|
|
424
|
+
"""
|
|
425
|
+
if self._api_client is None:
|
|
426
|
+
self._api_client = ApiClient()
|
|
427
|
+
return self._api_client
|
|
428
|
+
|
|
429
|
+
@api_client.setter
|
|
430
|
+
def api_client(self, value: ApiClient) -> None:
|
|
431
|
+
self._api_client = value
|
|
432
|
+
|
|
433
|
+
def __getstate__(self):
|
|
434
|
+
state = self.__dict__.copy()
|
|
435
|
+
# Process-local runtime state must not cross process boundaries: the
|
|
436
|
+
# 'spawn'/'forkserver' start methods pickle Process args (issues
|
|
437
|
+
# #264/#271: "cannot pickle '_thread.lock' object"). Everything below
|
|
438
|
+
# is rebuilt lazily in the child process.
|
|
439
|
+
state["_api_client"] = None
|
|
440
|
+
state["_background_loop"] = None
|
|
441
|
+
state["_pending_async_tasks"] = {}
|
|
442
|
+
state["_pending_tasks_lock"] = None
|
|
443
|
+
ref = _importable_function_reference(state.get("_execute_function"))
|
|
444
|
+
if ref is not None:
|
|
445
|
+
state["_execute_function"] = ref
|
|
446
|
+
return state
|
|
447
|
+
|
|
448
|
+
def __setstate__(self, state):
|
|
449
|
+
self.__dict__.update(state)
|
|
450
|
+
if self._pending_tasks_lock is None:
|
|
451
|
+
self._pending_tasks_lock = threading.Lock()
|
|
452
|
+
if isinstance(self._execute_function, _ExecuteFunctionReference):
|
|
453
|
+
# Assign through the property setter so the signature-derived
|
|
454
|
+
# flags are recomputed against the resolved function.
|
|
455
|
+
self.execute_function = self._execute_function.resolve()
|
|
456
|
+
|
|
338
457
|
def execute(self, task: Task) -> TaskResult:
|
|
339
458
|
task_input = {}
|
|
340
459
|
task_output = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/authorization_client.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/lease_tracker.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/automator/task_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/configuration/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/context/task_context.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/conductor_event.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/event_client.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/event_dispatcher.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/listener_register.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/queue/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/task_runner_events.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/event/workflow_events.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/exceptions/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/exceptions/api_error.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/role_resource_api.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/task_resource_api.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/api/user_resource_api.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/async_api_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/__init__.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/action.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/auditable.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/bulk_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/conductor_user.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/event_handler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/health.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/integration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/permission.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/poll_data.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/rate_limit.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/request_param.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/schema_def.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/service_method.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/start_workflow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/subject_ref.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/tag_object.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/tag_string.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/target_ref.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_def.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_details.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_exec_log.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_result.py
RENAMED
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/task_summary.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow.py
RENAMED
|
File without changes
|
{conductor_python-1.4.0 → conductor_python-1.5.0}/src/conductor/client/http/models/workflow_def.py
RENAMED
|
File without changes
|