Increase the build system timeout when processing jobs to 5 minutes as initially designed

pull/755/head
Mihail Stoyanov 2014-12-02 18:00:06 +02:00
parent a88eaace6b
commit 45c1f43182
1 changed files with 1 additions and 1 deletions

View File

@ -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")