DispatchPersistedAuthUpdate forwards already-persisted file auth updates.
(update watcher.AuthUpdate)
| 159 | |
| 160 | // DispatchPersistedAuthUpdate forwards already-persisted file auth updates. |
| 161 | func (w *WatcherWrapper) DispatchPersistedAuthUpdate(update watcher.AuthUpdate) bool { |
| 162 | if w == nil || w.dispatchPersistedAuth == nil { |
| 163 | return false |
| 164 | } |
| 165 | return w.dispatchPersistedAuth(update) |
| 166 | } |
| 167 | |
| 168 | // SetClients updates the watcher file-backed clients registry. |
| 169 | // SetClients and SetAPIKeyClients removed; watcher manages its own caches |