diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-29 13:19:33 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-29 13:19:33 +0100 |
commit | f7160a063d5dedd9525b306534109b96087f1896 (patch) | |
tree | d53dea199a65aaf9ceac8aca75e060444087f963 /whiteboard.cpp | |
parent | 19c343fc2ea6dbf7eeae3ac7000c5c877ddfec63 (diff) |
Add SQL VACUUM to cleanup
Diffstat (limited to 'whiteboard.cpp')
-rw-r--r-- | whiteboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whiteboard.cpp b/whiteboard.cpp index 35ae30b..a49ef73 100644 --- a/whiteboard.cpp +++ b/whiteboard.cpp @@ -79,7 +79,7 @@ void Whiteboard::storage_cleanup() throw std::runtime_error("Storage not initialized"); m_storage->cleanup(); } - std::this_thread::sleep_for(std::chrono::minutes(10)); + std::this_thread::sleep_for(std::chrono::hours(24)); } } |