Skip to content
Merged
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
4 changes: 4 additions & 0 deletions src/Netclaw.Actors/Reminders/ReminderManagerActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ protected override void PreStart()
return;
}

// The store can be constructed before all persisted files are present.
// Rescan at the actor's startup boundary so schema alerts reflect the
// authoritative on-disk state rather than constructor timing.
_definitionStore.List();
EmitDroppedInvalidDefinitionAlerts();
EmitRejectedLegacyDefinitionAlerts();

Expand Down
Loading