@@ -16,7 +16,7 @@ public void NeverEverConnectedNoBacklogThrowsConnectionNotAvailableSync()
1616 var db = conn . GetDatabase ( ) ;
1717 var key = Me ( ) ;
1818
19- // No connection is active/available to service this operation: GET 6.0.14AbortOnConnectFailTests-NeverEverConnectedThrowsConnectionNotAvailable ; UnableToConnect on doesnot.exist.0d034c26350e4ee199d6c5f385a073f7 :6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 500s , state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 0s ago, v: 2.6.99.22667 , mc: 1/1/0, mgr: 10 of 10 available, clientName: NAMISTOU-3 (SE.Redis-v2.6.99.22667 ), IOCP: (Busy=0,Free=1000,Min=32 ,Max=1000), WORKER: (Busy=2 ,Free=32765 ,Min=32 ,Max=32767), POOL: (Threads=17 ,QueuedItems=0,CompletedItems=20 ), v: 2.6.99.22667
19+ // No connection is active/available to service this operation: GET 6.0.18AbortOnConnectFailTests-NeverEverConnectedNoBacklogThrowsConnectionNotAvailableSync ; UnableToConnect on doesnot.exist.d4d1424806204b68b047954b1db3411d :6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 100s , state: Connecting, mgr: 4 of 10 available, last-heartbeat: never, global: 0s ago, v: 2.6.120.51136 , mc: 1/1/0, mgr: 5 of 10 available, clientName: CRAVERTOP7 (SE.Redis-v2.6.120.51136 ), IOCP: (Busy=0,Free=1000,Min=16 ,Max=1000), WORKER: (Busy=3 ,Free=32764 ,Min=16 ,Max=32767), POOL: (Threads=25 ,QueuedItems=0,CompletedItems=1066,Timers=46 ), v: 2.6.120.51136
2020 var ex = Assert . Throws < RedisConnectionException > ( ( ) => db . StringGet ( key ) ) ;
2121 Log ( "Exception: " + ex . Message ) ;
2222 Assert . Contains ( "No connection is active/available to service this operation" , ex . Message ) ;
@@ -29,7 +29,7 @@ public async Task NeverEverConnectedNoBacklogThrowsConnectionNotAvailableAsync()
2929 var db = conn . GetDatabase ( ) ;
3030 var key = Me ( ) ;
3131
32- // No connection is active/available to service this operation: GET 6.0.14AbortOnConnectFailTests-NeverEverConnectedThrowsConnectionNotAvailable ; UnableToConnect on doesnot.exist.0d034c26350e4ee199d6c5f385a073f7 :6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 500s , state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, global: 0s ago, v: 2.6.99.22667 , mc: 1/1/0, mgr: 10 of 10 available, clientName: NAMISTOU-3 (SE.Redis-v2.6.99.22667 ), IOCP: (Busy=0,Free=1000,Min=32 ,Max=1000), WORKER: (Busy=2 ,Free=32765 ,Min=32 ,Max=32767), POOL: (Threads=17 ,QueuedItems=0,CompletedItems=20 ), v: 2.6.99.22667
32+ // No connection is active/available to service this operation: GET 6.0.18AbortOnConnectFailTests-NeverEverConnectedNoBacklogThrowsConnectionNotAvailableSync ; UnableToConnect on doesnot.exist.d4d1424806204b68b047954b1db3411d :6379/Interactive, Initializing/NotStarted, last: NONE, origin: BeginConnectAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 100s , state: Connecting, mgr: 4 of 10 available, last-heartbeat: never, global: 0s ago, v: 2.6.120.51136 , mc: 1/1/0, mgr: 5 of 10 available, clientName: CRAVERTOP7 (SE.Redis-v2.6.120.51136 ), IOCP: (Busy=0,Free=1000,Min=16 ,Max=1000), WORKER: (Busy=3 ,Free=32764 ,Min=16 ,Max=32767), POOL: (Threads=25 ,QueuedItems=0,CompletedItems=1066,Timers=46 ), v: 2.6.120.51136
3333 var ex = await Assert . ThrowsAsync < RedisConnectionException > ( ( ) => db . StringGetAsync ( key ) ) ;
3434 Log ( "Exception: " + ex . Message ) ;
3535 Assert . Contains ( "No connection is active/available to service this operation" , ex . Message ) ;
@@ -49,7 +49,7 @@ public void DisconnectAndReconnectThrowsConnectionExceptionSync()
4949 var server = conn . GetServerSnapshot ( ) [ 0 ] ;
5050 server . SimulateConnectionFailure ( SimulatedFailureType . All ) ;
5151
52- // Exception: The message timed out in the backlog attempting to send because no connection became available (100ms) - Last Connection Exception: InternalFailure on 127.0.0.1:6379/Interactive, Initializing/NotStarted, last: GET, origin: ConnectedAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 500s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, last-mbeat: 0s ago, global: 0s ago, v: 2.6.99.22667, command=PING, inst: 0, qu: 0, qs: 0, aw: False, bw: CheckingForTimeout, last-in: 0, cur-in: 0, sync-ops: 1, async-ops: 1, serverEndpoint: 127.0.0.1:6379, conn-sec: n/a, aoc: 0, mc: 1/1/0, mgr: 10 of 10 available, clientName: NAMISTOU-3(SE.Redis-v2.6.99.22667), IOCP: (Busy=0,Free=1000,Min=32,Max=1000), WORKER: (Busy=2,Free=32765,Min=32,Max=32767), POOL: (Threads=18,QueuedItems=0,CompletedItems=65), v: 2.6.99.22667 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
52+ // Exception: The message timed out in the backlog attempting to send because no connection became available (100ms) - Last Connection Exception: SocketFailure (InputReaderCompleted, last-recv: 7) on 127.0.0.1:6379/Interactive, Idle/ReadAsync, last: PING, origin: SimulateConnectionFailure, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 100s, state: ConnectedEstablished, mgr: 10 of 10 available, in: 0, in-pipe: 0, out-pipe: 0, last-heartbeat: never, last-mbeat: 0s ago, global: 0s ago, v: 2.6.120.51136, command=PING, timeout: 100, inst: 13, qu: 1, qs: 0, aw: False, bw: Inactive, last-in: 0, cur-in: 0, sync-ops: 2, async-ops: 0, serverEndpoint: 127.0.0.1:6379, conn-sec: n/a, aoc: 0, mc: 1/1/0, mgr: 10 of 10 available, clientName: CRAVERTOP7(SE.Redis-v2.6.120.51136), IOCP: (Busy=0,Free=1000,Min=16,Max=1000), WORKER: (Busy=2,Free=32765,Min=16,Max=32767), POOL: (Threads=33,QueuedItems=0,CompletedItems=6237,Timers=39), v: 2.6.120.51136 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
5353 var ex = Assert . ThrowsAny < Exception > ( ( ) => db . Ping ( ) ) ;
5454 Log ( "Exception: " + ex . Message ) ;
5555 Assert . True ( ex is RedisConnectionException or RedisTimeoutException ) ;
@@ -73,7 +73,7 @@ public async Task DisconnectAndNoReconnectThrowsConnectionExceptionAsync()
7373 var server = conn . GetServerSnapshot ( ) [ 0 ] ;
7474 server . SimulateConnectionFailure ( SimulatedFailureType . All ) ;
7575
76- // Exception: The message timed out in the backlog attempting to send because no connection became available (100ms) - Last Connection Exception: InternalFailure on 127.0.0.1:6379/Interactive, Initializing/NotStarted, last: GET, origin: ConnectedAsync, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 500s, state: Connecting, mgr: 10 of 10 available, last-heartbeat: never, last-mbeat: 0s ago, global: 0s ago, v: 2.6.99.22667, command=PING, inst: 0, qu: 0, qs: 0, aw: False, bw: CheckingForTimeout, last-in: 0, cur-in: 0, sync-ops: 1, async-ops: 1, serverEndpoint: 127.0.0.1:6379, conn-sec: n/a, aoc: 0, mc: 1/1/0, mgr: 10 of 10 available, clientName: NAMISTOU-3(SE.Redis-v2.6.99.22667), IOCP: (Busy=0,Free=1000,Min=32,Max=1000), WORKER: (Busy=2,Free=32765,Min=32,Max=32767), POOL: (Threads=18,QueuedItems=0,CompletedItems=65), v: 2.6.99.22667 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
76+ // Exception: The message timed out in the backlog attempting to send because no connection became available (100ms) - Last Connection Exception: SocketFailure (InputReaderCompleted, last-recv: 7) on 127.0.0.1:6379/Interactive, Idle/ReadAsync, last: PING, origin: SimulateConnectionFailure, outstanding: 0, last-read: 0s ago, last-write: 0s ago, keep-alive: 100s, state: ConnectedEstablished, mgr: 8 of 10 available, in: 0, in-pipe: 0, out-pipe: 0, last-heartbeat: never, last-mbeat: 0s ago, global: 0s ago, v: 2.6.120.51136, command=PING, timeout: 100, inst: 0, qu: 0, qs: 0, aw: False, bw: CheckingForTimeout, last-in: 0, cur-in: 0, sync-ops: 1, async-ops: 1, serverEndpoint: 127.0.0.1:6379, conn-sec: n/a, aoc: 0, mc: 1/1/0, mgr: 8 of 10 available, clientName: CRAVERTOP7(SE.Redis-v2.6.120.51136), IOCP: (Busy=0,Free=1000,Min=16,Max=1000), WORKER: (Busy=6,Free=32761,Min=16,Max=32767), POOL: (Threads=33,QueuedItems=0,CompletedItems=5547,Timers=60), v: 2.6.120.51136 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
7777 var ex = await Assert . ThrowsAsync < RedisConnectionException > ( ( ) => db . PingAsync ( ) ) ;
7878 Log ( "Exception: " + ex . Message ) ;
7979 Assert . StartsWith ( "The message timed out in the backlog attempting to send because no connection became available (100ms) - Last Connection Exception: " , ex . Message ) ;
0 commit comments