diff --git a/app/api/tasks.py b/app/api/tasks.py index c0cedadd4..072fafe50 100644 --- a/app/api/tasks.py +++ b/app/api/tasks.py @@ -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)