Skip to content

Commit

Permalink
Merge pull request #3162 from schandrika/releases/9.0rc0
Browse files Browse the repository at this point in the history
handled timeout on test_historian.py
  • Loading branch information
craig8 authored Mar 28, 2024
2 parents 4b71690 + cc71c44 commit 1924bdd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions volttrontesting/services/historian/test_historian.py
Original file line number Diff line number Diff line change
Expand Up @@ -1443,6 +1443,8 @@ def test_invalid_query(request, historian, publish_agent, query_agent,
start=now,
count=20,
order="LAST_TO_FIRST").get(timeout=10)
except gevent.timeout.Timeout:
assert True
except Exception as error:
print("exception: {}".format(error))
assert "No route to host:" in str(error)
Expand Down

0 comments on commit 1924bdd

Please sign in to comment.