Merge pull request #234 from dshulyak/fix_exc
Fix forgotten exception in graph.py
This commit is contained in:
commit
b20a4acc1c
@ -35,3 +35,7 @@ class LexError(SolarError):
|
||||
|
||||
class ParseError(SolarError):
|
||||
pass
|
||||
|
||||
|
||||
class ExecutionTimeout(SolarError):
|
||||
pass
|
||||
|
@ -19,6 +19,7 @@ import networkx as nx
|
||||
|
||||
from solar import utils
|
||||
from .traversal import states
|
||||
from solar import errors
|
||||
|
||||
from collections import Counter
|
||||
|
||||
@ -178,4 +179,4 @@ def wait_finish(uid, timeout):
|
||||
return
|
||||
else:
|
||||
raise errors.ExecutionTimeout(
|
||||
'Next tasks wasnt able to finish: %s' % not_finished)
|
||||
'Run %s wasnt able to finish' % uid)
|
||||
|
Loading…
x
Reference in New Issue
Block a user