We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 686445e commit 201bc03Copy full SHA for 201bc03
parsl/executors/status_handling.py
@@ -167,10 +167,14 @@ def tasks(self) -> Dict[object, Future]:
167
def provider(self):
168
return self._provider
169
170
- def _filter_scale_in_ids(self, to_kill, killed):
+ def _filter_scale_in_ids(self, to_kill: Sequence[Any], killed: Sequence[bool]) -> Sequence[Any]:
171
""" Filter out job id's that were not killed
172
"""
173
assert len(to_kill) == len(killed)
174
+
175
+ if False in killed:
176
+ logger.warning(f"Some jobs were not killed successfully: to_kill list is {to_kill}, killed list is {killed}")
177
178
# Filters first iterable by bool values in second
179
return list(compress(to_kill, killed))
180
0 commit comments