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 f452a77 commit 0365e49Copy full SHA for 0365e49
dynamic_stack_decider/src/dynamic_stack_decider/dsd.py
@@ -238,6 +238,10 @@ def pop(self):
238
else:
239
self.stack.pop()
240
241
+ # not matter if a single Element has set do_not_reevaluate, we always want to
242
+ # this is because an Element should not control DSD execution beyond its own lifetime
243
+ self.do_not_reevaluate = False
244
+
245
def set_do_not_reevaluate(self):
246
"""No reevaluation on next iteration"""
247
self.do_not_reevaluate = True
0 commit comments