Prechádzať zdrojové kódy

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 mesiac pred
rodič
commit
a68eb643d8
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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