-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make delay between call status check configurable #1292
Comments
In #1338 I exposed However, note that in a normal lithops execution where you use the I see that you've already discovered this in your project, but for the record in this issue: to reduce the time between checks, utilize the We can discuss whether it's appropriate to automatically set the We can also discuss if it s appropriate to default the |
Closing as the root issue is addressed by multiple PRs. WE can open a separate PR if there is a new issue or alternative requirement |
The time between calls to
internal_storage.get_call_status
is hardcoded to 1 second (GET_RESULT_SLEEP_SECS
):lithops/lithops/future.py
Lines 201 to 203 in b199505
It would be useful to be able to control this so that it is the same as either
lithops.monitoring_interval
(or perhaps half that value), orwait_dur_sec
in waitThe use case is running tests with local storage where it would be good to set it to a small value such as 0.1s so the tests run faster.
The text was updated successfully, but these errors were encountered: