[core] Graph: remove warning logs from dfsToProcess method

Those warnings happen already in the Task Manager and should be handled only by the Task Manager.
This commit is contained in:
Julien-Haudegond 2020-08-27 12:33:32 +02:00
parent eaad870fc4
commit e64c66e447

View file

@ -734,10 +734,6 @@ class Graph(BaseObject):
def finishVertex(vertex, graph):
chunksToProcess = []
for chunk in vertex.chunks:
if chunk.status.status is Status.SUBMITTED:
logging.warning('Node "{}" is already submitted.'.format(chunk.name))
if chunk.status.status is Status.RUNNING:
logging.warning('Node "{}" is already running.'.format(chunk.name))
if chunk.status.status is not Status.SUCCESS:
chunksToProcess.append(chunk)
if chunksToProcess: