Fix local generation by ensuring generation happens only after local store reload (#351)

This commit is contained in:
Max Goedjen
2022-02-16 23:05:24 -08:00
committed by GitHub
parent f43dea0d0d
commit 067f1526b0
3 changed files with 9 additions and 5 deletions

View File

@@ -56,6 +56,9 @@ public protocol SecretStoreModifiable: SecretStore {
extension NSNotification.Name {
// Distributed notification that keys were modified out of process (ie, that the management tool added/removed secrets)
public static let secretStoreUpdated = NSNotification.Name("com.maxgoedjen.Secretive.secretStore.updated")
// Internal notification that keys were reloaded from the backing store.
public static let secretStoreReloaded = NSNotification.Name("com.maxgoedjen.Secretive.secretStore.reloaded")
}