Unverified Commit 8218894f authored by bugclerk's avatar bugclerk Committed by GitHub
Browse files

remove notify_test* calls on HA (#13468)


(cherry picked from commit ed7ceb26e81d3e6685f0e97aafc8a19705e77057)
Co-authored-by: default avatarCaleb <yocalebo@gmail.com>
parent 6387a681
No related merge requests found
Showing with 0 additions and 7 deletions
+0 -7
......@@ -29,8 +29,6 @@ def log_test_name_to_middlewared_log(request):
with client(host_ip=ip_to_use) as c:
c.call("test.notify_test_start", test_name)
if ha:
c.call("failover.call_remote", "test.notify_test_start", [test_name])
yield
......@@ -39,8 +37,3 @@ def log_test_name_to_middlewared_log(request):
# fixtures setup code.
with client(host_ip=ip_to_use) as c:
c.call("test.notify_test_end", test_name)
if ha:
# the CI suite does all kinds of things to the standby controller
# on HA systems, so we need to suppress connection errors here
with contextlib.suppress(Exception):
c.call("failover.call_remote", "test.notify_test_end", [test_name])
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment