mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
[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:
parent
eaad870fc4
commit
e64c66e447
1 changed files with 0 additions and 4 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue