From 4d11ff0021c1a8ea608acdaaeb81d0ca8273de29 Mon Sep 17 00:00:00 2001 From: Alexander Steppke Date: Thu, 10 Oct 2024 21:28:21 +0200 Subject: [PATCH] changed default to never squash --- pycrdt_websocket/ystore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycrdt_websocket/ystore.py b/pycrdt_websocket/ystore.py index e39386f..a0ca310 100644 --- a/pycrdt_websocket/ystore.py +++ b/pycrdt_websocket/ystore.py @@ -324,7 +324,7 @@ class MySQLiteYStore(SQLiteYStore): # Defaults to never purging document history (None). document_ttl: int | None = None # The maximum length of the history of the documents in seconds that is kept. - history_length: int | None = 120 + history_length: int | None = None # The minimum interval in seconds between history cleanup operations. min_cleanup_interval: int = 60 path: str