Skip to content

Commit

Permalink
Log tls policy model when wait for ready fails
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Smolar <[email protected]>
  • Loading branch information
Jakub Smolar committed Aug 16, 2024
1 parent eff6931 commit 0a16006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/kuadrant/policy/tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ def __getitem__(self, key):

def wait_for_ready(self):
"""Increase timeout to account for letsEncrypt"""
success = self.wait_until(has_condition("Enforced", "True"), timelimit=180)
assert success, f"{self.kind()} did not get ready in time"
success = self.wait_until(has_condition("Enforced", "True"), timelimit=10)
assert success, f"{self.kind()} did not get ready in time:\n {self.refresh().model}"

0 comments on commit 0a16006

Please sign in to comment.