mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-10 09:10:30 +03:00
build: clear timeout flag before every build
This fixes the weird logging behaviour where after a build that timed out all subsequent failed builds would also show up as timed out.
This commit is contained in:
parent
bc5bf7e0ec
commit
39a5637df2
1 changed files with 1 additions and 0 deletions
|
|
@ -1102,6 +1102,7 @@ def main():
|
||||||
if options.server and timeout > 0:
|
if options.server and timeout > 0:
|
||||||
logging.debug(_('Setting {0} sec timeout for this build').format(timeout))
|
logging.debug(_('Setting {0} sec timeout for this build').format(timeout))
|
||||||
timer = threading.Timer(timeout, force_halt_build, [timeout])
|
timer = threading.Timer(timeout, force_halt_build, [timeout])
|
||||||
|
timeout_event.clear()
|
||||||
timer.start()
|
timer.start()
|
||||||
else:
|
else:
|
||||||
timer = None
|
timer = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue