mirror of
https://github.com/clearml/clearml-server
synced 2025-05-08 14:04:44 +00:00
Pipelines children query now looks for pipeline projects and not tasks
This commit is contained in:
parent
dbe1c6f00f
commit
42556c8dbb
@ -933,7 +933,10 @@ class ProjectBLL:
|
||||
& Q(system_tags__in=[dataset_tag], basename__ne=datasets_project_name)
|
||||
}
|
||||
elif children_type == ProjectChildrenType.pipeline:
|
||||
child_queries = {Task: child_query & Q(system_tags__in=[pipeline_tag])}
|
||||
child_queries = {
|
||||
Project: child_query
|
||||
& Q(system_tags__in=[pipeline_tag], basename__ne=pipelines_project_name)
|
||||
}
|
||||
elif children_type == ProjectChildrenType.report:
|
||||
child_queries = {Task: child_query & Q(system_tags__in=[reports_tag])}
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user