From fb6b4085ccef39ce1b3a3fc447c14bf79920a6dd Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Tue, 28 Feb 2023 08:04:14 +0100 Subject: [PATCH] Remove bootstrap sync from server on build --- scripts/datastore.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/scripts/datastore.py b/scripts/datastore.py index f4159399b..c4b7a2652 100644 --- a/scripts/datastore.py +++ b/scripts/datastore.py @@ -236,14 +236,6 @@ class DbDataSync(BaseSync): write_json_to_file(file_path, j, timestamp) -class BootstrapSync(BaseSync): - def __init__(self, host, version, target_path): - BaseSync.__init__(self, host, version, target_path) - - def sync(self): - self.sync_file('bootstrap', 'bootstrap.json') - - class UpdateInfoSync(BaseSync): def __init__(self, host, version, target_path): BaseSync.__init__(self, host, version, target_path) @@ -254,7 +246,6 @@ class UpdateInfoSync(BaseSync): def update_shared(host, version, target_path): DbDataSync(host, version, target_path).sync() - BootstrapSync(host, version, target_path).sync() UpdateInfoSync(host, version, target_path).sync() @@ -264,7 +255,6 @@ def main(): target_path = os.path.abspath(os.curdir) DbDataSync(host, version, target_path).sync() - BootstrapSync(host, version, target_path).sync() UpdateInfoSync(host, version, target_path).sync()