Example do not run - jitter cannot be higher than sleep time (probably "redo" package upgrade)

This commit is contained in:
Ofri Kleinfeld 2022-03-31 12:47:43 +03:00
Родитель f713354756
Коммит 73efce32a8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -67,7 +67,7 @@ client = PyKustoClient(
# Override retry config for specific query
Query(client.Samples.StormEvents).take(5).to_dataframe(
retry_config=RetryConfig(attempts=3, sleep_time=1, max_sleep_time=600, sleep_scale=2, jitter=3)
retry_config=RetryConfig(attempts=3, sleep_time=1, max_sleep_time=600, sleep_scale=2, jitter=1)
)
```