Refa: refine retry gap. (#8773)
### What problem does this PR solve? ### Type of change - [x] Refactoring - [x] Performance Improvement
This commit is contained in:
parent
9f94d88acd
commit
8281ceb406
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class Base(ABC):
|
|||
|
||||
def _get_delay(self):
|
||||
"""Calculate retry delay time"""
|
||||
return self.base_delay + random.uniform(0, 0.5)
|
||||
return self.base_delay + random.uniform(10, 150)
|
||||
|
||||
def _classify_error(self, error):
|
||||
"""Classify error based on error message content"""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue