-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX - Airflow tagging long names #16304
Conversation
@@ -255,7 +269,8 @@ def build_dag_configs(ingestion_pipeline: IngestionPipeline) -> dict: | |||
"schedule_interval": ingestion_pipeline.airflowConfig.scheduleInterval, | |||
"tags": [ | |||
"OpenMetadata", | |||
ingestion_pipeline.displayName or ingestion_pipeline.name.__root__, | |||
clean_name_tag(ingestion_pipeline.displayName) | |||
or clean_name_tag(ingestion_pipeline.name.__root__), | |||
ingestion_pipeline.pipelineType.value, | |||
ingestion_pipeline.service.name, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we also modify service name to 100 chars?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fair enough, hoped noone would name it that long but since we don't have a max. Good call
Quality Gate failed for 'open-metadata-airflow-apis'Failed conditions |
Describe your changes:
Fixes failing AUTs due to test suite deployment with long names
I worked on ... because ...
Type of change:
Checklist:
Fixes <issue-number>: <short explanation>