nousresearch--hermes-agent
b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
65 行
1.8 KiB
Python
65 行
1.8 KiB
Python
"""Embedded-daemon health grace timeout export (issue #13125 comment thread).
|
|
|
|
On resource-contended hosts the embedded Hindsight daemon can exceed a single
|
|
2s /health check and get needlessly killed + restarted. Upstream exposes the
|
|
grace window via HINDSIGHT_EMBED_PORT_HEALTH_GRACE_TIMEOUT (read at import
|
|
time). The plugin surfaces it as a config.json knob and exports it to the
|
|
process env BEFORE daemon_embed_manager is imported.
|
|
"""
|
|
|
|
import importlib
|
|
|
|
import pytest
|
|
|
|
hindsight = importlib.import_module("plugins.memory.hindsight")
|
|
_export = hindsight._export_port_health_grace_timeout
|
|
_ENV = hindsight._PORT_HEALTH_GRACE_ENV
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _clear_env(monkeypatch):
|
|
monkeypatch.delenv(_ENV, raising=False)
|
|
|
|
|
|
def test_configured_value_exported(monkeypatch):
|
|
_export({"port_health_grace_timeout": 60})
|
|
import os
|
|
|
|
assert float(os.environ[_ENV]) == 60.0
|
|
|
|
|
|
def test_string_value_parsed(monkeypatch):
|
|
_export({"port_health_grace_timeout": "45"})
|
|
import os
|
|
|
|
assert float(os.environ[_ENV]) == 45.0
|
|
|
|
|
|
def test_blank_and_missing_are_noops(monkeypatch):
|
|
import os
|
|
|
|
_export({})
|
|
assert _ENV not in os.environ
|
|
_export({"port_health_grace_timeout": ""})
|
|
assert _ENV not in os.environ
|
|
_export({"port_health_grace_timeout": None})
|
|
assert _ENV not in os.environ
|
|
|
|
|
|
def test_invalid_and_negative_ignored(monkeypatch):
|
|
import os
|
|
|
|
_export({"port_health_grace_timeout": "not-a-number"})
|
|
assert _ENV not in os.environ
|
|
_export({"port_health_grace_timeout": -5})
|
|
assert _ENV not in os.environ
|
|
|
|
|
|
def test_explicit_env_wins_over_config(monkeypatch):
|
|
import os
|
|
|
|
monkeypatch.setenv(_ENV, "99")
|
|
_export({"port_health_grace_timeout": 60})
|
|
# setdefault must not clobber an operator-set env override.
|
|
assert os.environ[_ENV] == "99"
|