summaryrefslogtreecommitdiff
path: root/qa/qa/support/matchers/eventually_matcher.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/support/matchers/eventually_matcher.rb')
-rw-r--r--qa/qa/support/matchers/eventually_matcher.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/qa/qa/support/matchers/eventually_matcher.rb b/qa/qa/support/matchers/eventually_matcher.rb
index ff8adab424b..dedef8e6b98 100644
--- a/qa/qa/support/matchers/eventually_matcher.rb
+++ b/qa/qa/support/matchers/eventually_matcher.rb
@@ -59,8 +59,10 @@ module QA
def wait_and_check(actual, expectation_name)
attempt = 0
- QA::Runtime::Logger.debug("Running eventually matcher with '#{operator_msg}' operator")
- QA::Support::Retrier.retry_until(**@retry_args) do
+ QA::Runtime::Logger.debug(
+ "Running eventually matcher with '#{operator_msg}' operator with: #{@retry_args}"
+ )
+ QA::Support::Retrier.retry_until(**@retry_args, log: false) do
QA::Runtime::Logger.debug("evaluating expectation, attempt: #{attempt += 1}")
public_send(expectation_name, actual)