From 3ab5642a11068ce4d73f5c51271a485544a0f137 Mon Sep 17 00:00:00 2001 From: James Hobin Date: Mon, 18 Mar 2024 10:07:33 -0400 Subject: [PATCH] Turn off persistToCloud since cloning strategy is probably changing --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index 6438743a2..2470e7827 100644 --- a/config.js +++ b/config.js @@ -57,6 +57,6 @@ module.exports.objectsPath = objectsPath; module.exports.beatPort = argv.udpPort || 52316; // Whether to enable the offline clone functionality -module.exports.persistToCloud = true; +module.exports.persistToCloud = false; module.exports.allowSecureMode = argv.secure || process.env.ALLOW_SECURE_MODE === 'true';