We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a10a2c commit 92397beCopy full SHA for 92397be
src/rpc/requestrouter_test.cpp
@@ -320,7 +320,12 @@ namespace {
320
}
321
const auto error = waitForError("foo"_l1, QByteArray{});
322
QCOMPARE(error.has_value(), true);
323
- QCOMPARE(error.value(), RpcError::ConnectionError);
+ if (error.value() == RpcError::TimedOut) {
324
+ // Can happen with TLS 1.3
325
+ warning().log("Connecting to server requiring client certificate timed out");
326
+ } else {
327
+ QCOMPARE(error.value(), RpcError::ConnectionError);
328
+ }
329
330
331
void checkClientCertificateSuccess() {
0 commit comments