about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-matter-server/link-paa-root-certs.patch
blob: 217fe42339ecaa75a4828501f5ac1fc7c2a7de18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
diff --git a/matter_server/server/const.py b/matter_server/server/const.py
index 2a6140b..275353a 100644
--- a/matter_server/server/const.py
+++ b/matter_server/server/const.py
@@ -15,7 +15,8 @@ DATA_MODEL_SCHEMA_VERSION = 6
 # and always uses the development subfolder
 # regardless of anything you pass into instantiating the controller
 # revisit this once matter 1.1 is released
-PAA_ROOT_CERTS_DIR: Final[pathlib.Path] = (
+PAA_ROOT_CERTS_DIR: Final[pathlib.Path] = pathlib.Path("@paacerts@")
+(
     pathlib.Path(__file__)
     .parent.resolve()
     .parent.resolve()
diff --git a/matter_server/server/helpers/paa_certificates.py b/matter_server/server/helpers/paa_certificates.py
index d186be1..d2cef54 100644
--- a/matter_server/server/helpers/paa_certificates.py
+++ b/matter_server/server/helpers/paa_certificates.py
@@ -62,6 +62,8 @@ async def fetch_dcl_certificates(
     fetch_production_certificates: bool = True,
 ) -> int:
     """Fetch DCL PAA Certificates."""
+    return 0
+
     LOGGER.info("Fetching the latest PAA root certificates from DCL.")
     fetch_count: int = 0
     base_urls = set()
@@ -121,6 +123,8 @@ async def fetch_dcl_certificates(
 
 async def fetch_git_certificates() -> int:
     """Fetch Git PAA Certificates."""
+    return 0
+
     fetch_count = 0
     LOGGER.info("Fetching the latest PAA root certificates from Git.")
 
@@ -162,6 +166,8 @@ async def fetch_certificates(
     fetch_production_certificates: bool = True,
 ) -> int:
     """Fetch PAA Certificates."""
+    return 0
+
     loop = asyncio.get_running_loop()
 
     if not PAA_ROOT_CERTS_DIR.is_dir():