Settings delegate to the shared store, so /config hub changes persist and are read live by the gateway.
(ctx context.Context, key string)
| 218 | // Settings delegate to the shared store, so /config hub changes persist and are |
| 219 | // read live by the gateway. |
| 220 | func (l *localHubClient) GetSetting(ctx context.Context, key string) (string, bool, error) { |
| 221 | return l.store.GetSetting(ctx, key) |
| 222 | } |
| 223 | func (l *localHubClient) SetSetting(ctx context.Context, key, value string) error { |
| 224 | return l.store.SetSetting(ctx, key, value) |
| 225 | } |
nothing calls this directly
no test coverage detected