diff --git a/core/lib.rs b/core/lib.rs
index 471b70095..57726b76e 100644
--- a/core/lib.rs
+++ b/core/lib.rs
@@ -483,6 +483,7 @@ impl Database {
encryption_key: RefCell::new(None),
encryption_cipher_mode: Cell::new(None),
sync_mode: Cell::new(SyncMode::Full),
+ data_sync_retry: Cell::new(false),
});
self.n_connections
.fetch_add(1, std::sync::atomic::Ordering::Relaxed);
@@ -928,6 +929,7 @@ pub struct Connection {
encryption_key: RefCell