Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions loopx/cli_commands/quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ def handle_quota_command(
turn_instance_id=heartbeat_turn_id,
scheduler_execution_context=scheduler_context,
operator_inbox_urgency_projector=operator_inbox_urgency_projector,
monitor_poll_recorder=record_quota_monitor_poll,
status_reloader=lambda: collect_status(
registry_path=registry_path,
runtime_root_override=runtime_root_arg,
Expand Down
4 changes: 2 additions & 2 deletions loopx/cli_commands/quota_monitor_poll.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from ..control_plane.scheduler.execution_context import (
SchedulerExecutionContextResolution,
)
from ..quota import record_quota_monitor_poll


def _receipt_bound_monitor_todo_id(
Expand Down Expand Up @@ -57,9 +56,10 @@ def record_quota_monitor_poll_for_cli(
),
operator_inbox_urgency_projector: Callable[..., dict[str, object]],
status_reloader: Callable[[], dict[str, object]],
monitor_poll_recorder: Callable[..., dict[str, object]],
) -> dict[str, object]:
"""Execute the monitor-poll CLI request with receipt-bound settlement identity."""
return record_quota_monitor_poll(
return monitor_poll_recorder(
status_payload,
goal_id=args.goal_id,
registry_path=registry_path,
Expand Down