Skip to content

Commit

Permalink
In retrospect a half hour is a long time to wait to avoid threading c…
Browse files Browse the repository at this point in the history
…ontention
  • Loading branch information
MattGal committed May 28, 2021
1 parent 5e746f3 commit 9bc7c3d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ def main():
worker.daemon = True
worker.start()

time.sleep(2000)
# https://github.com/dotnet/arcade/issues/7371 - trying to avoid contention for stdout
time.sleep(5)
log.info("Beginning to read test results...")

# In case the user puts the results in HELIX_WORKITEM_UPLOAD_ROOT for upload, check there too.
Expand Down

0 comments on commit 9bc7c3d

Please sign in to comment.