Set overrides the config value. Used for testing
(key string, value interface{})
| 180 | |
| 181 | // Set overrides the config value. Used for testing |
| 182 | func (m *Monkey) Set(key string, value interface{}) { |
| 183 | m.v.Set(key, value) |
| 184 | } |
| 185 | |
| 186 | // readRemoteConfig retrieves config parameters from a remote source |
| 187 | // If no remote source has been configured, this is a no-op |
no outgoing calls