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 a252cb9 commit d8fef1aCopy full SHA for d8fef1a
avocado_i2n/cartgraph/graph.py
@@ -2134,6 +2134,10 @@ async def traverse_object_trees(
2134
+ ", ".join(n.id for n in occupied_at)
2135
)
2136
# allow reentrancy as best shot at recovering from an otherwise fatal error
2137
+ # TODO: could reentrancy lead to unrecoverable asyncio loop? next time we get
2138
+ # hanging check for the warning below. the tests must be parallely runnable
2139
+ # without resource conflicts so maybe the failed worker doesn't end up as completed task?
2140
+ logging.warning(f"Reentrancy by {worker.id}!")
2141
next.params["max_concurrent_tries"] = (
2142
next.params.get_numeric("max_concurrent_tries", 0) + 1
2143
0 commit comments