Skip to content

Commit

Permalink
fixup! tests/log_level_test: test_log_level_multiple_expiry
Browse files Browse the repository at this point in the history
  • Loading branch information
andijcr committed May 10, 2024
1 parent 54d808c commit 35b09ce
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/rptest/tests/log_level_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,14 @@ def test_log_level_multiple_expiry(self, loggers=tuple[str, str]):
time.sleep(1)
admin.set_log_level(second_logger, "trace", expires=10)
mon.wait_until(f"Expiring log level for {{{first_logger}}}",
timeout_sec=15,
backoff_sec=1,
err_msg=f"Never saw Expiring for {first_logger}")
timeout_sec=15,
backoff_sec=1,
err_msg=f"Never saw Expiring for {first_logger}")
mon.wait_until(f"Expiring log level for {{{second_logger}}}",
timeout_sec=15,
backoff_sec=1,
err_msg=f"Never saw Expiring for {second_logger}")
timeout_sec=15,
backoff_sec=1,
err_msg=f"Never saw Expiring for {second_logger}")


@cluster(num_nodes=3)
def test_max_expiry(self):
Expand Down

0 comments on commit 35b09ce

Please sign in to comment.