Use bounded Railiance time for protected validity checks
Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a09cbb-87c6-7900-a145-4ce53ba9f1a6
This commit is contained in:
parent
5841d8e88a
commit
f4b4dd6b17
8 changed files with 514 additions and 14 deletions
|
|
@ -52,6 +52,7 @@ class Config:
|
|||
authorization_min_approvals: int = 1
|
||||
pdp_url: str = ""
|
||||
pdp_token_file: Path | None = None
|
||||
clock_trust_file: Path | None = None
|
||||
|
||||
@classmethod
|
||||
def load(cls) -> "Config":
|
||||
|
|
@ -94,4 +95,5 @@ class Config:
|
|||
),
|
||||
pdp_url=os.environ.get("SECRETS_ENGINE_PDP_URL", ""),
|
||||
pdp_token_file=Path(pdp_token) if pdp_token else None,
|
||||
clock_trust_file=Path(os.environ["SECRETS_ENGINE_CLOCK_TRUST_FILE"]) if os.environ.get("SECRETS_ENGINE_CLOCK_TRUST_FILE") else None,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue