Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions core/framework/runtime/agent_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -1750,3 +1750,10 @@ def create_agent_runtime(
runtime.register_entry_point(spec)

return runtime


# TODO(feat/webhook-idempotency): AgentRuntime.trigger() lacks deduplication.
# Webhook providers (Stripe, GitHub, etc.) retry on timeout/5xx, causing duplicate executions.
# Add: idempotency_key param to trigger(), OrderedDict TTL cache (_idempotency_cache),
# and auto-hash (method+path+body) for webhook routes that don't provide an explicit key.
# See: https://github.com/aden-hive/hive/issues/5947
Loading