Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget committed Mar 27, 2020
1 parent e9f2358 commit 8f69fa2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion etc/test_uwp.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def do_GET(self):
return
server = HTTPServer(('', port), handler)
thread = Thread(target=server.serve_forever)
print "Starting HTTP server."
thread.start()
return server, thread

Expand Down Expand Up @@ -92,7 +93,7 @@ def do_GET(self):

run_powershell_cmd('Start-Process -ArgumentList ' + url + ' shell:AppsFolder\\' + app_family + '!App')

http_thread.join(timeout=20)
http_thread.join(timeout=120)
success = True
if http_thread.is_alive():
http_server.shutdown()
Expand Down

0 comments on commit 8f69fa2

Please sign in to comment.