(key string)
| 336 | } |
| 337 | |
| 338 | func (m *MultiClient) LastUpdateTime(key string) time.Time { |
| 339 | _, kv := m.getPrimaryClient() |
| 340 | return kv.client.LastUpdateTime(key) |
| 341 | } |
| 342 | |
| 343 | func (m *MultiClient) writeToSecondary(ctx context.Context, primary kvclient, key string, newValue any) { |
| 344 | if m.mirrorTimeout > 0 { |
nothing calls this directly
no test coverage detected