We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1353fe0 commit 99a6cd0Copy full SHA for 99a6cd0
lithops/monitor.py
@@ -90,7 +90,10 @@ def _all_ready(self):
90
"""
91
Checks if all futures are ready, success or done
92
93
- return all([f.ready or f.success or f.done for f in self.futures])
+ try:
94
+ return all(f.ready or f.success or f.done for f in self.futures)
95
+ except Exception:
96
+ return False
97
98
def _check_new_futures(self, call_status, f):
99
"""Checks if a functions returned new futures to track"""
0 commit comments