diff --git a/src/api/src/backend/views/PipelineLocks.py b/src/api/src/backend/views/PipelineLocks.py index 9133181d..f84820c8 100644 --- a/src/api/src/backend/views/PipelineLocks.py +++ b/src/api/src/backend/views/PipelineLocks.py @@ -124,7 +124,6 @@ def post(self, request, group_id, pipeline_id): ) ) - # TODO catch the specific error thrown by the group service except (DatabaseError, IntegrityError, OperationalError) as e: logger.exception(e.__cause__) return ServerError(message=e.__cause__) @@ -196,6 +195,8 @@ def get(self, request, group_id, pipeline_id, pipeline_lock_uuid=None, *_, **__ # locks for this pipeline if pipeline_lock_uuid == None: return self.list(pipeline) + + print(pipeline.pipelinelocks) lock_model = next( filter(