From cc71c445c749c04973a33a0bdcfdf94e26eeff57 Mon Sep 17 00:00:00 2001 From: Chandrika Sivaramakrishnan Date: Thu, 28 Mar 2024 11:00:42 -0700 Subject: [PATCH] handled minor gevent timeout --- volttrontesting/services/historian/test_historian.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/volttrontesting/services/historian/test_historian.py b/volttrontesting/services/historian/test_historian.py index afa49acf41..352cbfea6a 100644 --- a/volttrontesting/services/historian/test_historian.py +++ b/volttrontesting/services/historian/test_historian.py @@ -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)