about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-matter-server/link-paa-root-certs.patch
blob: 6c52715950562ab97c1fab8593db1c7cc1901ef5 (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
diff --git a/matter_server/server/const.py b/matter_server/server/const.py
index 8cca3cf..43f02f5 100644
--- a/matter_server/server/const.py
+++ b/matter_server/server/const.py
@@ -14,6 +14,8 @@ DATA_MODEL_SCHEMA_VERSION = 6
 # Keep default location inherited from early version of the Python
 # bindings.
 DEFAULT_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 e530838..fdd6025 100644
--- a/matter_server/server/helpers/paa_certificates.py
+++ b/matter_server/server/helpers/paa_certificates.py
@@ -64,6 +64,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()
@@ -124,6 +126,8 @@ async def fetch_dcl_certificates(
 
 async def fetch_git_certificates(paa_root_cert_dir: Path) -> int:
     """Fetch Git PAA Certificates."""
+    return 0
+
     fetch_count = 0
     LOGGER.info("Fetching the latest PAA root certificates from Git.")
 
@@ -159,6 +163,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_cert_dir.is_dir():