From e01c8050eec6d449396af1aa38e54c7c8fb1df62 Mon Sep 17 00:00:00 2001 From: Alexander Steppke Date: Mon, 24 Jun 2024 17:30:21 +0200 Subject: [PATCH] adapted jupyter_helper ttl --- src/cristallina/jupyter_helper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cristallina/jupyter_helper.py b/src/cristallina/jupyter_helper.py index e85a425..cf70615 100644 --- a/src/cristallina/jupyter_helper.py +++ b/src/cristallina/jupyter_helper.py @@ -39,9 +39,11 @@ class MySQLiteYStore(SQLiteYStore): super().__init__(*args, **kwargs) self.db_path = MySQLiteYStore.db_path + print(f"Using custom SQLiteYStore at {self.db_path}") self.log.info(f"Using custom SQLiteYStore with path {self.db_path}") if self.document_ttl is not None: + print(f"Using database_ttl: {self.document_ttl}") self.log.info(f"Using database_ttl: {self.document_ttl}") self.document_ttl = int(self.document_ttl)