Skip to content

Commit

Permalink
fixup: skip test if testing TLS
Browse files Browse the repository at this point in the history
  • Loading branch information
kgiusti committed Nov 1, 2023
1 parent 2a6844b commit c6166b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/system_tests_tcp_adaptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,9 @@ def router(name, mode, connection, extra=None, ssl=False, encapsulation="legacy"
cls.routers.append(cls.tester.qdrouterd(name, config, wait=True))

# monitor router memory usage:
os.environ["SKUPPER_ROUTER_ALLOC_MONITOR_SECS"] = "10"
if not test_ssl:
# temporarily disabled to help debug ISSUE-1276
os.environ["SKUPPER_ROUTER_ALLOC_MONITOR_SECS"] = "10"

cls.routers = []
cls.test_ssl = test_ssl
Expand Down Expand Up @@ -1448,6 +1450,10 @@ def test_9999_memory_metrics(self):
Take advantage of the long running TCP test to verify that alloc_pool
metrics have been correctly written to the logs
"""
if self.test_ssl:
# temporarily disabled to help debug ISSUE-1276
self.skipTest("Disabled until ISSUE-1276 resolved")

def _poll_logs(router, regex_mem, regex_action):
last_mem_match = None # match the start of the alloc log line
last_action_match = None # match the qdr_action_t entry in the log line
Expand Down

0 comments on commit c6166b9

Please sign in to comment.