(self, *args, **kwargs)
| 1638 | x = BaseKeyValueStoreBackend._apply_chord_incr |
| 1639 | |
| 1640 | def apply_chord_incr_with_sleep(self, *args, **kwargs): |
| 1641 | sleep(1) |
| 1642 | x(self, *args, **kwargs) |
| 1643 | |
| 1644 | monkeypatch.setattr(BaseKeyValueStoreBackend, |
| 1645 | '_apply_chord_incr', |