skrawcz commented on code in PR #632:
URL: https://github.com/apache/burr/pull/632#discussion_r2705700542
##########
burr/core/application.py:
##########
@@ -2614,6 +2616,9 @@ def _init_state_from_persister(
# there was something
last_position = load_result["position"]
self.state = load_result["state"]
+ if getattr(self, "override_state_values", None):
Review Comment:
This is overly defensive. Logically this should always resolve given this
change.
```suggestion
if self.override_state_values:
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]