Skip to content

Commit

Permalink
Fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lachiewalker committed Nov 8, 2023
1 parent 71ac138 commit b402c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def output(self, request, pk=None, project_pk=None):
except (ObjectDoesNotExist, ValidationError):
raise exceptions.NotFound()

output = task.console.reset()
output = ""
if task.processing_node and task.uuid and task.status == status_codes.RUNNING:
# Update task info from processing node
info = task.processing_node.get_task_info(task.uuid, 0)
Expand Down

0 comments on commit b402c62

Please sign in to comment.