From c1bd64adb9ed3eed52004ee7c5a9f8165e5868f2 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Fri, 18 Dec 2020 12:36:41 -0800 Subject: [PATCH] uses non-deprecated method --- py-json/LANforge/LFUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/LANforge/LFUtils.py b/py-json/LANforge/LFUtils.py index 5ea2d86b..62766311 100644 --- a/py-json/LANforge/LFUtils.py +++ b/py-json/LANforge/LFUtils.py @@ -459,7 +459,7 @@ def wait_until_ports_disappear(base_url="http://localhost:8080", port_list=[], d if debug: print("checking:" + check_url) lf_r = LFRequest.LFRequest(base_url, check_url) - json_response = lf_r.getAsJson(debug_=debug) + json_response = lf_r.get_as_json(debug_=debug) if (json_response != None): found_stations.append(port_name) if len(found_stations) > 0: