Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Oct 2, 2023
1 parent 2ec5508 commit 47759da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/src/backend/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,4 +531,5 @@ class TaskExecution(models.Model):
stderr = models.TextField(null=True)
status = models.CharField(max_length=16, choices=TASK_EXECUTION_STATUSES, default=RUN_STATUS_PENDING)
task = models.ForeignKey("backend.Task", related_name="task_executions", on_delete=models.CASCADE)
uuid = models.UUIDField(primary_key=True)
uuid = models.UUIDField(primary_key=True)

0 comments on commit 47759da

Please sign in to comment.