Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-6977 dt: relax noncogent crl test log whitelist #23721

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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