From a1108e7c23c601861474eaade85dbd5215c82a65 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Thu, 11 Mar 2021 15:32:03 -0800 Subject: [PATCH] Fix ws_generic_monitor Signed-off-by: Matthew Stidham --- py-scripts/ws_generic_monitor_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py-scripts/ws_generic_monitor_test.py b/py-scripts/ws_generic_monitor_test.py index 5dc2840f..f9345b90 100755 --- a/py-scripts/ws_generic_monitor_test.py +++ b/py-scripts/ws_generic_monitor_test.py @@ -11,6 +11,7 @@ import json if 'py-json' not in sys.path: sys.path.append('../py-json') from ws_generic_monitor import WS_Listener +from realm import Realm reference = "test_ipv4_connection.py" @@ -35,7 +36,7 @@ class GenericMonitorTest(Realm): pass def main(): - WS_Listener(lfclient_host="localhost", _scriptname=reference, _callback=TestRun) + WS_Listener(lfclient_host="localhost", _scriptname=reference)#, _callback=TestRun) if __name__ == "__main__":