Skip to content

Commit

Permalink
dt: relax noncogent crl test log whitelist
Browse files Browse the repository at this point in the history
Ignores all error log lines for this test since a range of errors can
happen across various layers in the brokers when we install a noncogent
CRL.
  • Loading branch information
pgellert committed Oct 10, 2024
1 parent 497c5de commit a8ca790
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/rptest/tests/crl_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0

import re
import socket
import tempfile
import json
Expand Down Expand Up @@ -274,7 +275,9 @@ def cluster_health(node: ClusterNode,
backoff_sec=0.2,
err_msg="Cluster did not become unhealthy")

@cluster(num_nodes=3)
# Ignore all logs since we can expect a variety of errors with noncogent certs, eg:
# kafka - server.cc:159 - Error[applying protocol] remote address: 172.31.37.188:59640 - seastar::timed_out_error (timedout)
@cluster(num_nodes=3, log_allow_list=[re.compile(".*")])
def test_noncogent(self):
node = self.redpanda.nodes[0]
self.rpk.list_schemas()
Expand Down

0 comments on commit a8ca790

Please sign in to comment.