(dbname string)
| 407 | } |
| 408 | |
| 409 | func (d *invalidDatabaseConfigs) remove(dbname string) { |
| 410 | d.m.Lock() |
| 411 | defer d.m.Unlock() |
| 412 | delete(d.dbNames, dbname) |
| 413 | } |
| 414 | |
| 415 | // removeNonExistingConfigs will remove any configs from invalid config tracking map that aren't present in fetched configs |
| 416 | func (d *invalidDatabaseConfigs) removeNonExistingConfigs(fetchedConfigs map[string]bool) { |
no test coverage detected