fix cache loading error on high concurrency

extend the retry times, and add delay, jitter between tries.
This commit is contained in:
Chi Song 2021-05-03 11:10:09 -07:00 коммит произвёл Chi Song
Родитель b04b150458
Коммит d9440e3cda
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -695,7 +695,7 @@ class AzurePlatform(Platform):
template = json.load(f)
return template
@retry(tries=2)
@retry(tries=10, delay=1, jitter=(0.5, 1))
def _load_location_info_from_file(
self, cached_file_name: Path, log: Logger
) -> Optional[AzureLocation]: