Merge pull request #60448 from kshitijk4poor/chore/59607-comment-precision

docs(gateway): sharpen the cached-agent bypass comment (#59607)
This commit is contained in:
kshitij 2026-07-08 01:05:25 +05:30 committed by GitHub
commit 2e42bb2da5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18240,11 +18240,12 @@ class GatewayRunner(GatewayAuthorizationMixin, GatewayKanbanWatchersMixin, Gatew
"conversation context (possible FTS write corruption)",
session_key, len(agent_history), len(_selected),
)
# The live in-memory history bypassed the replay-cleanup
# pass inside _build_gateway_agent_history — re-apply the
# stale-confirmation expiry (#59607) so a dangerous
# confirmation can't slip through this path either.
# Idempotent; messages without timestamps are untouched.
# The live in-memory history bypassed the
# _build_gateway_agent_history cleanup pipeline above —
# re-apply the stale-confirmation expiry (#59607) so a
# dangerous confirmation can't slip through this path
# either. Idempotent; messages without timestamps are
# untouched.
agent_history = _strip_stale_dangerous_confirmations(
_selected, now=time.time()
)