浏览代码

web: default manifest URL to manifest.json.xz

Switch the default CBS manifest source from the 67 MB JSON file to the
0.7 MB xz file on firmware.ardupilot.org.
Shiv Tyagi 1 月之前
父节点
当前提交
a68eb643d8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      web/core/config.py

+ 1 - 1
web/core/config.py

@@ -97,7 +97,7 @@ class Settings:
         """URL for the ArduPilot firmware manifest."""
         return os.getenv(
             'CBS_AP_FIRMWARE_MANIFEST_URL',
-            'https://firmware.ardupilot.org/manifest.json',
+            'https://firmware.ardupilot.org/manifest.json.xz',
         )
 
     @property