File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -563,7 +563,7 @@ def __init__(
563
563
# deep-copy the Retry object as it is mutable
564
564
self .retry = copy .deepcopy (retry )
565
565
# Update the retry's supported errors with the specified errors
566
- self .retry .update_supported_erros (retry_on_error )
566
+ self .retry .update_supported_errors (retry_on_error )
567
567
else :
568
568
self .retry = Retry (NoBackoff (), 0 )
569
569
self .health_check_interval = health_check_interval
@@ -1099,7 +1099,7 @@ def __init__(
1099
1099
# deep-copy the Retry object as it is mutable
1100
1100
self .retry = copy .deepcopy (retry )
1101
1101
# Update the retry's supported errors with the specified errors
1102
- self .retry .update_supported_erros (retry_on_error )
1102
+ self .retry .update_supported_errors (retry_on_error )
1103
1103
else :
1104
1104
self .retry = Retry (NoBackoff (), 0 )
1105
1105
self .health_check_interval = health_check_interval
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def __init__(
24
24
self ._retries = retries
25
25
self ._supported_errors = supported_errors
26
26
27
- def update_supported_erros (self , specified_errors : list ):
27
+ def update_supported_errors (self , specified_errors : list ):
28
28
"""
29
29
Updates the supported errors with the specified error types
30
30
"""
You can’t perform that action at this time.
0 commit comments