You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version Information
Version of Akka.NET? 1.5.28
Which Akka.NET Modules? Akka.Persistence
Describe the bug
When snapshot save fails, Akka will then attempt to delete the specified snapshot, if the delete snapshot operation throws an exception, this exception will become unobserved.
To Reproduce
This can most likely be reproduced in multiple ways, but this is what happened in our scenario.
Multiple load snapshot operations failed, causing an open circuit.
Save snapshot operation fails, because circuit is open.
Delete snapshot gets triggered, because snapshot save failed.
Delete snapshot operation returns a faulted task with an open circuit exception, this exception is never observed.
Expected behavior
The exception should get observed by Akka framework.
Actual behavior
Exception was not observed and caused our service to crash.
Screenshots
Environment
Windows Service and .NET 7
The text was updated successfully, but these errors were encountered:
@Aaronontheweb Yes this is different problem than #7358, that also caused us an unobserved task exception, but it is also related to the SnapshotStore.
Version Information
Version of Akka.NET? 1.5.28
Which Akka.NET Modules? Akka.Persistence
Describe the bug
When snapshot save fails, Akka will then attempt to delete the specified snapshot, if the delete snapshot operation throws an exception, this exception will become unobserved.
To Reproduce
This can most likely be reproduced in multiple ways, but this is what happened in our scenario.
Expected behavior
The exception should get observed by Akka framework.
Actual behavior
Exception was not observed and caused our service to crash.
Screenshots
Environment
Windows Service and .NET 7
The text was updated successfully, but these errors were encountered: