Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,9 @@ protected bool WaitingForInitialization(object message)
return true;
case Status.Failure fail:
Log.Error(fail.Cause, "Failure during {0} initialization.", Self);
Context.Stop(Self);
return true;

// trigger a restart so we have some hope of succeeding in the future even if initialization failed
throw new ApplicationException("Failed to initialize SQL Journal.", fail.Cause);
default:
Stash.Stash();
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,9 @@ private bool WaitingForInitialization(object message)
return true;
case Status.Failure msg:
Log.Error(msg.Cause, "Error during snapshot store initialization");
Context.Stop(Self);
return true;

// trigger a restart so we have some hope of succeeding in the future even if initialization failed
throw new ApplicationException("Failed to initialize SQL SnapshotStore.", msg.Cause);
default:
Stash.Stash();
return true;
Expand Down