Skip to content

Commit 1c2cf7b

Browse files
committed
Updating websocket proxy outside test to not fail it due to connection timeout issues.
1 parent 8179eb9 commit 1c2cf7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/tests/functional/websockets/client/proxy_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ TEST_FIXTURE(uri_address, proxy_with_credentials)
7979
// This is ok.
8080
return;
8181
}
82-
else if (e.error_code().value() == 9)
82+
else if (e.error_code().value() == 9 || e.error_code().value() == 5)
8383
{
8484
// Timer expired case, since this is an outside test don't fail due to timing out.
8585
return;

0 commit comments

Comments
 (0)