Closed chfoo closed 10 years ago
ExternalProcess has an OBOE causing max_tries to behave like max_tries - 1. So, if 2 is passed, it only executes at most once and exits.
ExternalProcess
max_tries
max_tries - 1
2
I think on externalprocess.py Line 77
item["tries"] = 1
should be initialized to 0 instead since it hasn't "tried" the process yet.
0
ExternalProcess
has an OBOE causingmax_tries
to behave likemax_tries - 1
. So, if2
is passed, it only executes at most once and exits.I think on externalprocess.py Line 77
should be initialized to
0
instead since it hasn't "tried" the process yet.