Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/conductor/client/automator/async_task_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async def __async_register_task_definition(self) -> None:
schema_client = OrkesSchemaClient(self.configuration)
except Exception as e:
# Schema client not available (server doesn't support schemas)
logger.warning(f"⚠ Schema registry not available on server - task will be registered without schemas")
logger.debug(f"⚠ Schema registry not available on server - task will be registered without schemas")
logger.debug(f" Error: {e}")
schema_registry_available = False
schema_client = None
Expand All @@ -273,7 +273,7 @@ async def __async_register_task_definition(self) -> None:
except Exception as e:
# Check if this is a 404 (API endpoint doesn't exist on server)
if hasattr(e, 'status') and e.status == 404:
logger.warning(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
logger.debug(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
schema_registry_available = False
input_schema_name = None
else:
Expand All @@ -298,7 +298,7 @@ async def __async_register_task_definition(self) -> None:
except Exception as e:
# Check if this is a 404 (API endpoint doesn't exist on server)
if hasattr(e, 'status') and e.status == 404:
logger.warning(f"⚠ Schema registry API not available on server (404)")
logger.debug(f"⚠ Schema registry API not available on server (404)")
schema_registry_available = False
else:
# Other error - log and continue without this schema
Expand Down Expand Up @@ -393,7 +393,7 @@ async def __async_register_task_definition(self) -> None:

# Print success message with link
task_def_url = f"{self.configuration.ui_host}/taskDef/{task_name}"
logger.info(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
logger.debug(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
logger.debug(f" View at: {task_def_url}")

if input_schema_name or output_schema_name:
Expand Down
8 changes: 4 additions & 4 deletions src/conductor/client/automator/task_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def __register_task_definition(self) -> None:
schema_client = OrkesSchemaClient(self.configuration)
except Exception as e:
# Schema client not available (server doesn't support schemas)
logger.warning(f"⚠ Schema registry not available on server - task will be registered without schemas")
logger.debug(f"⚠ Schema registry not available on server - task will be registered without schemas")
logger.debug(f" Error: {e}")
schema_registry_available = False
schema_client = None
Expand All @@ -242,7 +242,7 @@ def __register_task_definition(self) -> None:
except Exception as e:
# Check if this is a 404 (API endpoint doesn't exist on server)
if hasattr(e, 'status') and e.status == 404:
logger.warning(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
logger.debug(f"⚠ Schema registry API not available on server (404) - task will be registered without schemas")
schema_registry_available = False
input_schema_name = None
else:
Expand All @@ -267,7 +267,7 @@ def __register_task_definition(self) -> None:
except Exception as e:
# Check if this is a 404 (API endpoint doesn't exist on server)
if hasattr(e, 'status') and e.status == 404:
logger.warning(f"⚠ Schema registry API not available on server (404)")
logger.debug(f"⚠ Schema registry API not available on server (404)")
schema_registry_available = False
else:
# Other error - log and continue without this schema
Expand Down Expand Up @@ -362,7 +362,7 @@ def __register_task_definition(self) -> None:

# Print success message with link
task_def_url = f"{self.configuration.ui_host}/taskDef/{task_name}"
logger.info(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
logger.debug(f"✓ Registered/Updated task definition: {task_name} with {task_def.to_dict()}")
logger.debug(f" View at: {task_def_url}")

if input_schema_name or output_schema_name:
Expand Down
Loading