Skip to content

Commit e4609d1

Browse files
committed
fixing update of comp_pipeline
1 parent b4139d2 commit e4609d1

File tree

1 file changed

+0
-4
lines changed
  • services/director-v2/src/simcore_service_director_v2/modules/db/repositories

1 file changed

+0
-4
lines changed

services/director-v2/src/simcore_service_director_v2/modules/db/repositories/comp_pipelines.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,12 @@ async def upsert_pipeline(
4242
**pipeline_at_db.model_dump(mode="json", by_alias=True)
4343
)
4444
# FIXME: This is not a nice thing. this part of the information should be kept in comp_runs.
45-
update_exclusion_policy = set()
46-
if not dag_graph.nodes():
47-
update_exclusion_policy.add("dag_adjacency_list")
4845
on_update_stmt = insert_stmt.on_conflict_do_update(
4946
index_elements=[comp_pipeline.c.project_id],
5047
set_=pipeline_at_db.model_dump(
5148
mode="json",
5249
by_alias=True,
5350
exclude_unset=True,
54-
exclude=update_exclusion_policy,
5551
),
5652
)
5753
async with self.db_engine.begin() as conn:

0 commit comments

Comments
 (0)