(&mut self)
| 1062 | |
| 1063 | #[mz_ore::instrument(level = "debug")] |
| 1064 | fn maintain(&mut self) { |
| 1065 | // Perform instance maintenance work. |
| 1066 | for instance in self.instances.values_mut() { |
| 1067 | instance.call(Instance::maintain); |
| 1068 | } |
| 1069 | } |
| 1070 | |
| 1071 | /// Allow writes for the specified collections on `instance_id`. |
| 1072 | /// |
no test coverage detected