Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Nov 7, 2024
1 parent dc9a9f7 commit 5414923
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/api/src/backend/views/PipelineRuns.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ def post(self, request, group_id, pipeline_id, pipeline_run_uuid):
return ServerErrorResp(message=str(e))
except Exception as e:
return ServerErrorResp(message=str(e))

run["started_at"] = run["started_at"].strftime("%Y-%m-%d %H:%M:%S") if run["started_at"] else None
run["last_modified"] = run["last_modified"].strftime("%Y-%m-%d %H:%M:%S") if run["last_modified"] else None

# Respond with the pipeline run
return ModelResponse(run)
Expand Down

0 comments on commit 5414923

Please sign in to comment.