Acquire the lock and flush to disk.
(self, force=False)
| 188 | self._flush_timer.start() |
| 189 | |
| 190 | def __flush(self, force=False): |
| 191 | """Acquire the lock and flush to disk.""" |
| 192 | with self._flush_lock: |
| 193 | self.__flush_locked(force=force) |
| 194 | |
| 195 | def __flush_locked(self, force=False): |
| 196 | """Write configuration to disk while holding the flush lock.""" |
no test coverage detected