fix(hermes): match versioned worker cleanup
Some checks failed
Tests / Declarative: Post Actions failed: 2, passed: 160

This commit is contained in:
jenkins 2026-08-09 01:08:31 -03:00
parent af71f730ad
commit 1303c5786d
2 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ spec:
- --cookie-samesite=lax
- --cookie-refresh=1h
- --cookie-expire=8h
- '--skip-auth-route=GET=^/sw[.]js$'
- '--skip-auth-route=GET=^/sw[.]js([?].*)?$'
- --upstream=http://hermes-chat-router.hermes.svc.cluster.local:8080
- --http-address=0.0.0.0:4180
- --skip-provider-button=true

View File

@ -96,7 +96,7 @@ def test_chat_oauth_allows_stale_service_worker_retirement():
)
args = deployment["spec"]["template"]["spec"]["containers"][0]["args"]
assert "--skip-auth-route=GET=^/sw[.]js$" in args
assert "--skip-auth-route=GET=^/sw[.]js([?].*)?$" in args
def test_sandbox_executes_python_with_bounded_output(tmp_path: Path, monkeypatch):