Skip to content

Commit

Permalink
Fix issue with tag override for artifacts/tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
romain-intel committed Aug 15, 2022
1 parent 54ea613 commit 04089a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/ui_backend_service/api/ws.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,10 @@ async def get_table_postprocessor(self, table_name):
refiner_postprocess = None
table = None
if table_name == self.db.task_table_postgres.table_name:
table = self.db.task_table_postgres
table = self.db.run_table_postgres
refiner_postprocess = self.task_refiner.postprocess
elif table_name == self.db.artifact_table_postgres.table_name:
table = self.db.artifact_table_postgres
table = self.db.run_table_postgres
refiner_postprocess = self.artifact_refiner.postprocess

if table:
Expand Down

0 comments on commit 04089a1

Please sign in to comment.