From 42d544a9c03aa4b682189f2274c5c1bea346d635 Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Tue, 17 Oct 2023 22:44:23 +0300 Subject: Remember and retry running operation --- test.py | 1 + 1 file changed, 1 insertion(+) (limited to 'test.py') diff --git a/test.py b/test.py index b67d26c..163c589 100644 --- a/test.py +++ b/test.py @@ -88,6 +88,7 @@ class Test(unittest.TestCase): continue if op == b'r': + print('>>> making snapshot') i = self._wal_make() with open(os.path.join(self._db_path, 'base'), 'wb') as f: f.write(f'up to {i}\n'.encode() + os.urandom(20480)) -- cgit