Skip to content

Commit 8f5a042

Browse files
authored
Fix flaky failing CreateSessionApplicationUriValidationTests: Wait 10s between create session attempts (#3307)
1 parent 9b1fec6 commit 8f5a042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Opc.Ua.Server.Tests/CreateSessionApplicationUriValidationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public void CreateSessionWithMultipleUrisNoneMatchThrows(NodeId certificateType)
323323
// Create and open session with retry logic for transient errors
324324
var sessionFactory = new DefaultSessionFactory(telemetry);
325325
const int maxAttempts = 5;
326-
const int delayMs = 1000;
326+
const int delayMs = 10000;
327327
for (int attempt = 0; ; attempt++)
328328
{
329329
try

0 commit comments

Comments
 (0)