Skip to content

Commit

Permalink
Merge branch 'main' into pip-libdash
Browse files Browse the repository at this point in the history
  • Loading branch information
angelhof committed Aug 25, 2022
2 parents dbec702 + 132b0ab commit 28968c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ws-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def wait_for_result(websocket, target_commit):
for row in result_rows:
# print(row["commit"], row["bench"], file=sys.stderr)
if row["commit"] == target_commit and row["bench"] == "CORRECTNESS":
print("FOUND COMMIT:", target_commit)
print("FOUND COMMIT:", target_commit, file=sys.stderr)
found = True
result_row = row
result_row = json.dumps(row)

if not found:
print("Results not present for commit:", target_commit, file=sys.stderr)
Expand Down

0 comments on commit 28968c9

Please sign in to comment.