25
25
SentinelCommands ,
26
26
list_or_args ,
27
27
)
28
- from redis .connection import ConnectionPool , SSLConnection , UnixDomainSocketConnection
28
+ from redis .connection import (
29
+ AbstractConnection ,
30
+ ConnectionPool ,
31
+ SSLConnection ,
32
+ UnixDomainSocketConnection ,
33
+ )
29
34
from redis .credentials import CredentialProvider
30
35
from redis .exceptions import (
31
36
ConnectionError ,
@@ -836,11 +841,15 @@ def clean_health_check_responses(self) -> None:
836
841
def _disconnect_raise_connect (self , conn , error ) -> None :
837
842
"""
838
843
Close the connection and raise an exception
839
- if retry_on_timeout is not set or the error
840
- is not a TimeoutError. Otherwise, try to reconnect
844
+ if retry_on_error is not set or the error is not one
845
+ of the specified error types. Otherwise, try to
846
+ reconnect
841
847
"""
842
848
conn .disconnect ()
843
- if not (conn .retry_on_timeout and isinstance (error , TimeoutError )):
849
+ if (
850
+ conn .retry_on_error is None
851
+ or isinstance (error , tuple (conn .retry_on_error )) is False
852
+ ):
844
853
raise error
845
854
conn .connect ()
846
855
@@ -1317,8 +1326,8 @@ def _disconnect_reset_raise(self, conn, error) -> None:
1317
1326
"""
1318
1327
Close the connection, reset watching state and
1319
1328
raise an exception if we were watching,
1320
- retry_on_timeout is not set,
1321
- or the error is not a TimeoutError
1329
+ if retry_on_error is not set or the error is not one
1330
+ of the specified error types.
1322
1331
"""
1323
1332
conn .disconnect ()
1324
1333
# if we were already watching a variable, the watch is no longer
@@ -1329,9 +1338,12 @@ def _disconnect_reset_raise(self, conn, error) -> None:
1329
1338
raise WatchError (
1330
1339
"A ConnectionError occurred on while watching one or more keys"
1331
1340
)
1332
- # if retry_on_timeout is not set, or the error is not
1333
- # a TimeoutError, raise it
1334
- if not (conn .retry_on_timeout and isinstance (error , TimeoutError )):
1341
+ # if retry_on_error is not set or the error is not one
1342
+ # of the specified error types, raise it
1343
+ if (
1344
+ conn .retry_on_error is None
1345
+ or isinstance (error , tuple (conn .retry_on_error )) is False
1346
+ ):
1335
1347
self .reset ()
1336
1348
raise
1337
1349
@@ -1489,11 +1501,15 @@ def load_scripts(self):
1489
1501
if not exist :
1490
1502
s .sha = immediate ("SCRIPT LOAD" , s .script )
1491
1503
1492
- def _disconnect_raise_reset (self , conn : Redis , error : Exception ) -> None :
1504
+ def _disconnect_raise_reset (
1505
+ self ,
1506
+ conn : AbstractConnection ,
1507
+ error : Exception ,
1508
+ ) -> None :
1493
1509
"""
1494
1510
Close the connection, raise an exception if we were watching,
1495
- and raise an exception if TimeoutError is not part of retry_on_error,
1496
- or the error is not a TimeoutError
1511
+ and raise an exception if retry_on_error is not set or the
1512
+ error is not one of the specified error types.
1497
1513
"""
1498
1514
conn .disconnect ()
1499
1515
# if we were watching a variable, the watch is no longer valid
@@ -1503,11 +1519,13 @@ def _disconnect_raise_reset(self, conn: Redis, error: Exception) -> None:
1503
1519
raise WatchError (
1504
1520
"A ConnectionError occurred on while watching one or more keys"
1505
1521
)
1506
- # if TimeoutError is not part of retry_on_error, or the error
1507
- # is not a TimeoutError, raise it
1508
- if not (
1509
- TimeoutError in conn .retry_on_error and isinstance (error , TimeoutError )
1522
+ # if retry_on_error is not set or the error is not one
1523
+ # of the specified error types, raise it
1524
+ if (
1525
+ conn .retry_on_error is None
1526
+ or isinstance (error , tuple (conn .retry_on_error )) is False
1510
1527
):
1528
+
1511
1529
self .reset ()
1512
1530
raise error
1513
1531
0 commit comments