mirror of https://github.com/ARMmbed/mbed-os.git
Increase the build system timeout when processing jobs to 5 minutes as initially designed
parent
a88eaace6b
commit
45c1f43182
|
@ -508,7 +508,7 @@ class mbedToolchain:
|
||||||
itr = 0
|
itr = 0
|
||||||
while True:
|
while True:
|
||||||
itr += 1
|
itr += 1
|
||||||
if itr > 6000:
|
if itr > 30000:
|
||||||
p.terminate()
|
p.terminate()
|
||||||
p.join()
|
p.join()
|
||||||
raise ToolException("Compile did not finish in 5 minutes")
|
raise ToolException("Compile did not finish in 5 minutes")
|
||||||
|
|
Loading…
Reference in New Issue