mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-14 16:08:41 +00:00
* fix(memory): cancel buffered extraction when agent is deleted or cleared * fix(memory): cancel buffered work before agent delete Address review: cancel before/after delete to close the rmtree race, scope user_id=None cancels to the legacy root only, and import memory helpers at module scope. Signed-off-by: SPEC <zt1y17@soton.ac.uk> * fix(memory): close remaining cancel races from review Post-clear cancel, legacy-only all_agents scope, always cancel even when memory is disabled, and fold cancel+delete into one offloaded thread. Signed-off-by: SPEC <zt1y17@soton.ac.uk> * docs(memory): align cancel_by_agent None-scope with legacy root Document that user_id=None cancels only the legacy no-user bucket, matching clear/storage semantics, not the whole process-local queue. Signed-off-by: SPEC <zt1y17@soton.ac.uk> * test(memory): fix cancel_by_agent docstring regression assertion Signed-off-by: SPEC <zt1y17@soton.ac.uk> * fix(memory): address final cancel review nits Type the delete helper with AgentStore, replace docstring pinning with a kwargs mapping test, and document scoped cancel + residual window in AGENTS.md. Signed-off-by: SPEC <zt1y17@soton.ac.uk> * fix(memory): resolve agent store inside delete worker thread get_agent_store() does blocking config/FS work; keep it off the event loop so test_delete_agent_does_not_block_event_loop and backend-blocking-io CI pass. Signed-off-by: SPEC <zt1y17@soton.ac.uk> --------- Signed-off-by: SPEC <zt1y17@soton.ac.uk>
507 lines
20 KiB
Python
507 lines
20 KiB
Python
import threading
|
|
import time
|
|
from unittest.mock import MagicMock, call, patch
|
|
|
|
from deerflow.agents.memory.backends.deermem.deermem.config import DeerMemConfig
|
|
from deerflow.agents.memory.backends.deermem.deermem.core.queue import ConversationContext, MemoryUpdateQueue
|
|
|
|
|
|
def _queue(updater: MagicMock | None = None) -> MemoryUpdateQueue:
|
|
"""A MemoryUpdateQueue with DI config + a (mock) updater; timer disabled."""
|
|
return MemoryUpdateQueue(DeerMemConfig(), updater or MagicMock())
|
|
|
|
|
|
def test_queue_add_preserves_existing_correction_flag_for_same_thread() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="thread-1", messages=["first"], signals=frozenset({"correction"}))
|
|
queue.add(thread_id="thread-1", messages=["second"], signals=frozenset())
|
|
|
|
assert len(queue._items) == 1
|
|
assert queue._items[0].messages == ["second"]
|
|
assert "correction" in queue._items[0].signals
|
|
|
|
|
|
def test_process_queue_forwards_correction_flag_to_updater() -> None:
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent", signals=frozenset({"correction"}))]
|
|
|
|
queue._process_queue()
|
|
|
|
mock_updater.update_memory.assert_called_once_with(
|
|
messages=["conversation"],
|
|
thread_id="thread-1",
|
|
agent_name="lead_agent",
|
|
signals=frozenset({"correction"}),
|
|
user_id=None,
|
|
trace_id=None,
|
|
bypass_watermark=False,
|
|
)
|
|
|
|
|
|
def test_queue_add_preserves_existing_reinforcement_flag_for_same_thread() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="thread-1", messages=["first"], signals=frozenset({"reinforcement"}))
|
|
queue.add(thread_id="thread-1", messages=["second"], signals=frozenset())
|
|
|
|
assert len(queue._items) == 1
|
|
assert queue._items[0].messages == ["second"]
|
|
assert "reinforcement" in queue._items[0].signals
|
|
|
|
|
|
def test_process_queue_forwards_reinforcement_flag_to_updater() -> None:
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent", signals=frozenset({"reinforcement"}))]
|
|
|
|
queue._process_queue()
|
|
|
|
mock_updater.update_memory.assert_called_once_with(
|
|
messages=["conversation"],
|
|
thread_id="thread-1",
|
|
agent_name="lead_agent",
|
|
signals=frozenset({"reinforcement"}),
|
|
user_id=None,
|
|
trace_id=None,
|
|
bypass_watermark=False,
|
|
)
|
|
|
|
|
|
def test_flush_nowait_cancels_existing_timer_and_starts_immediate_timer() -> None:
|
|
queue = _queue()
|
|
existing_timer = MagicMock()
|
|
queue._timer = existing_timer
|
|
created_timer = MagicMock()
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.threading.Timer", return_value=created_timer) as timer_cls:
|
|
queue.flush_nowait()
|
|
|
|
existing_timer.cancel.assert_called_once_with()
|
|
timer_cls.assert_called_once_with(0, queue._process_queue)
|
|
assert created_timer.daemon is True
|
|
created_timer.start.assert_called_once_with()
|
|
assert queue._timer is created_timer
|
|
|
|
|
|
def test_add_nowait_cancels_existing_timer_and_starts_immediate_timer() -> None:
|
|
queue = _queue()
|
|
existing_timer = MagicMock()
|
|
queue._timer = existing_timer
|
|
created_timer = MagicMock()
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.threading.Timer", return_value=created_timer) as timer_cls:
|
|
queue.add_nowait(thread_id="thread-1", messages=["conversation"], agent_name="lead-agent")
|
|
|
|
existing_timer.cancel.assert_called_once_with()
|
|
timer_cls.assert_called_once_with(0, queue._process_queue)
|
|
assert queue.pending_count == 1
|
|
assert queue._items[0].agent_name == "lead-agent"
|
|
assert created_timer.daemon is True
|
|
created_timer.start.assert_called_once_with()
|
|
|
|
|
|
def test_process_queue_defers_reprocess_when_already_processing() -> None:
|
|
"""When a timer fires while a worker is active, ``_process_queue`` must set the
|
|
deferred-rerun flag instead of spinning up a tight 0-delay Timer chain.
|
|
|
|
The old behavior re-scheduled a 0-delay Timer on every re-entry while busy,
|
|
burning a fresh thread each time. The fix defers a single re-run via
|
|
``_reprocess_pending`` that the finishing worker honors once.
|
|
"""
|
|
queue = _queue()
|
|
queue._processing = True
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.threading.Timer") as timer_cls:
|
|
queue._process_queue()
|
|
|
|
timer_cls.assert_not_called()
|
|
assert queue._reprocess_pending is True
|
|
|
|
|
|
def test_finishing_worker_reschedules_once_when_reprocess_pending() -> None:
|
|
"""A worker that finishes with ``_reprocess_pending`` set and work still queued
|
|
schedules exactly one follow-up run (not a per-arrival timer spin)."""
|
|
mock_updater = MagicMock()
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["first"], agent_name="lead_agent")]
|
|
queue._reprocess_pending = True
|
|
created_timer = MagicMock()
|
|
|
|
def _enqueue_more_while_processing(**_kwargs) -> bool:
|
|
# Simulate a new update arriving mid-processing so the finally block sees
|
|
# remaining work and reschedules exactly once.
|
|
queue._items.append(ConversationContext(thread_id="thread-2", messages=["second"], agent_name="lead_agent"))
|
|
return True
|
|
|
|
mock_updater.update_memory.side_effect = _enqueue_more_while_processing
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.threading.Timer", return_value=created_timer) as timer_cls:
|
|
queue._process_queue()
|
|
|
|
timer_cls.assert_called_once_with(0, queue._process_queue)
|
|
assert created_timer.daemon is True
|
|
created_timer.start.assert_called_once_with()
|
|
assert queue._reprocess_pending is False
|
|
|
|
|
|
def test_finishing_worker_does_not_reschedule_when_no_work_remains() -> None:
|
|
"""The deferred re-run is cleared even when nothing is left to process, so a
|
|
stray flag never leaves a dangling ``_reprocess_pending``."""
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["only"], agent_name="lead_agent")]
|
|
queue._reprocess_pending = True
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.threading.Timer") as timer_cls:
|
|
queue._process_queue()
|
|
|
|
timer_cls.assert_not_called()
|
|
assert queue._reprocess_pending is False
|
|
|
|
|
|
def test_flush_nowait_is_non_blocking() -> None:
|
|
queue = _queue()
|
|
started = threading.Event()
|
|
finished = threading.Event()
|
|
|
|
def _slow_process_queue() -> None:
|
|
started.set()
|
|
time.sleep(0.2)
|
|
finished.set()
|
|
|
|
queue._process_queue = _slow_process_queue
|
|
|
|
start = time.perf_counter()
|
|
queue.flush_nowait()
|
|
elapsed = time.perf_counter() - start
|
|
|
|
assert started.wait(0.1) is True
|
|
assert elapsed < 0.1
|
|
assert finished.is_set() is False
|
|
assert finished.wait(1.0) is True
|
|
|
|
|
|
def test_queue_keeps_updates_for_different_agents_in_same_thread() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_reset_timer"):
|
|
queue.add(thread_id="thread-1", messages=["agent-a"], agent_name="agent-a")
|
|
queue.add(thread_id="thread-1", messages=["agent-b"], agent_name="agent-b")
|
|
|
|
assert queue.pending_count == 2
|
|
assert [context.agent_name for context in queue._items] == ["agent-a", "agent-b"]
|
|
|
|
|
|
def test_queue_still_coalesces_updates_for_same_agent_in_same_thread() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="thread-1", messages=["first"], agent_name="agent-a", signals=frozenset({"correction"}))
|
|
queue.add(thread_id="thread-1", messages=["second"], agent_name="agent-a", signals=frozenset())
|
|
|
|
assert queue.pending_count == 1
|
|
assert queue._items[0].agent_name == "agent-a"
|
|
assert queue._items[0].messages == ["second"]
|
|
assert "correction" in queue._items[0].signals
|
|
|
|
|
|
def test_process_queue_updates_different_agents_in_same_thread_separately() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_reset_timer"):
|
|
queue.add(thread_id="thread-1", messages=["agent-a"], agent_name="agent-a")
|
|
queue.add(thread_id="thread-1", messages=["agent-b"], agent_name="agent-b")
|
|
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue._updater = mock_updater
|
|
|
|
with patch("deerflow.agents.memory.backends.deermem.deermem.core.queue.time.sleep"):
|
|
queue.flush()
|
|
|
|
assert mock_updater.update_memory.call_count == 2
|
|
mock_updater.update_memory.assert_has_calls(
|
|
[
|
|
call(messages=["agent-a"], thread_id="thread-1", agent_name="agent-a", signals=frozenset(), user_id=None, trace_id=None, bypass_watermark=False),
|
|
call(messages=["agent-b"], thread_id="thread-1", agent_name="agent-b", signals=frozenset(), user_id=None, trace_id=None, bypass_watermark=False),
|
|
]
|
|
)
|
|
|
|
|
|
def test_process_queue_forwards_trace_id_to_updater() -> None:
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent", trace_id="trace-memory-1")]
|
|
|
|
queue._process_queue()
|
|
|
|
mock_updater.update_memory.assert_called_once_with(
|
|
messages=["conversation"],
|
|
thread_id="thread-1",
|
|
agent_name="lead_agent",
|
|
signals=frozenset(),
|
|
user_id=None,
|
|
trace_id="trace-memory-1",
|
|
bypass_watermark=False,
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# shutdown_flush / flush_sync (graceful-shutdown drain) — review carry-overs.
|
|
# The queue is a daemon-timer + in-memory buffer, so anything pending at
|
|
# process exit is lost. flush_sync drains it within a hard timeout, joining an
|
|
# in-flight worker first so contexts a debounce Timer already pulled out of the
|
|
# queue are not lost either.
|
|
# ---------------------------------------------------------------------------
|
|
|
|
_QUEUE_MODULE = "deerflow.agents.memory.backends.deermem.deermem.core.queue"
|
|
|
|
|
|
def test_flush_sync_noop_on_empty_queue() -> None:
|
|
"""flush_sync short-circuits and returns True when there is nothing to drain."""
|
|
queue = _queue()
|
|
assert queue.pending_count == 0
|
|
assert queue.flush_sync(timeout=5.0) is True
|
|
|
|
|
|
def test_flush_sync_drains_pending_queue_and_returns_true() -> None:
|
|
"""flush_sync runs the synchronous flush() and waits for it to finish."""
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent")]
|
|
|
|
with (
|
|
patch(_QUEUE_MODULE + ".MemoryUpdater", create=True),
|
|
patch(_QUEUE_MODULE + ".time.sleep"),
|
|
):
|
|
completed = queue.flush_sync(timeout=5.0)
|
|
|
|
assert completed is True
|
|
assert queue.pending_count == 0
|
|
mock_updater.update_memory.assert_called_once_with(
|
|
messages=["conversation"],
|
|
thread_id="thread-1",
|
|
agent_name="lead_agent",
|
|
signals=frozenset(),
|
|
user_id=None,
|
|
trace_id=None,
|
|
bypass_watermark=False,
|
|
)
|
|
|
|
|
|
def test_flush_sync_returns_false_when_flush_exceeds_timeout() -> None:
|
|
"""flush_sync does not block past ``timeout``; a slow flush returns False."""
|
|
queue = _queue()
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent")]
|
|
release = threading.Event()
|
|
|
|
def _slow_flush() -> None:
|
|
# Block until the test releases us (well past the flush_sync timeout).
|
|
release.wait(timeout=5.0)
|
|
|
|
with patch.object(queue, "flush", side_effect=_slow_flush):
|
|
completed = queue.flush_sync(timeout=0.1)
|
|
|
|
assert completed is False
|
|
# The queue was not drained because flush() never returned.
|
|
assert queue.pending_count == 1
|
|
# Release the daemon thread so it does not linger past the test.
|
|
release.set()
|
|
|
|
|
|
def _run_inflight_worker(queue: MemoryUpdateQueue, release: threading.Event) -> threading.Thread:
|
|
"""Start a thread that mimics _process_queue's "pulled contexts, mid-LLM" state.
|
|
|
|
It claims ``_processing`` / ``_processing_thread`` (so the queue looks idle
|
|
by ``pending_count`` but a worker is in flight), blocks on ``release``,
|
|
then clears the flags on the way out.
|
|
"""
|
|
|
|
def _inflight() -> None:
|
|
with queue._lock:
|
|
queue._processing = True
|
|
queue._processing_thread = threading.current_thread()
|
|
release.wait(timeout=5.0)
|
|
with queue._lock:
|
|
queue._processing = False
|
|
queue._processing_thread = None
|
|
|
|
thread = threading.Thread(target=_inflight, name="fake-inflight-worker", daemon=True)
|
|
thread.start()
|
|
# Wait until the fake worker has claimed _processing.
|
|
while not queue.is_processing:
|
|
time.sleep(0.005)
|
|
return thread
|
|
|
|
|
|
def test_flush_sync_waits_for_inflight_worker_and_returns_false_if_unfinished() -> None:
|
|
"""flush_sync must not report success while an in-flight _process_queue is
|
|
still mid-LLM-call — the contexts it already pulled out would be lost on
|
|
exit. It joins the in-flight worker (bounded) and returns False when the
|
|
worker does not finish within the budget (review comment #1)."""
|
|
queue = _queue()
|
|
release = threading.Event()
|
|
inflight = _run_inflight_worker(queue, release)
|
|
|
|
try:
|
|
completed = queue.flush_sync(timeout=0.2)
|
|
finally:
|
|
release.set()
|
|
inflight.join(timeout=5.0)
|
|
|
|
assert completed is False
|
|
|
|
|
|
def test_flush_sync_returns_true_when_inflight_worker_finishes_in_budget() -> None:
|
|
"""When the in-flight worker finishes within the budget, flush_sync joins it
|
|
and reports success (review comment #1, positive case)."""
|
|
queue = _queue()
|
|
release = threading.Event()
|
|
inflight = _run_inflight_worker(queue, release)
|
|
|
|
# Let the in-flight worker finish well within the budget.
|
|
release.set()
|
|
|
|
completed = queue.flush_sync(timeout=5.0)
|
|
inflight.join(timeout=5.0)
|
|
|
|
assert completed is True
|
|
assert queue.is_processing is False
|
|
assert queue._processing_thread is None
|
|
|
|
|
|
def test_flush_sync_returns_false_when_flush_raises() -> None:
|
|
"""flush_sync reports failure (not success) when flush() raises, so the
|
|
caller never logs a contradictory 'completed' next to the exception
|
|
(review comment #2)."""
|
|
queue = _queue()
|
|
queue._items = [ConversationContext(thread_id="thread-1", messages=["conversation"], agent_name="lead_agent")]
|
|
|
|
with patch.object(queue, "flush", side_effect=RuntimeError("boom")):
|
|
completed = queue.flush_sync(timeout=5.0)
|
|
|
|
assert completed is False
|
|
|
|
|
|
def test_flush_sync_skips_inter_item_delay_on_drain_path() -> None:
|
|
"""On the shutdown-drain path the per-item rate-limit sleep is skipped so
|
|
the bounded timeout covers as many items as possible (review comment #5)."""
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
queue._items = [ConversationContext(thread_id=f"thread-{i}", messages=["conversation"], agent_name="lead_agent") for i in range(3)]
|
|
|
|
with patch(_QUEUE_MODULE + ".time.sleep") as mock_sleep:
|
|
completed = queue.flush_sync(timeout=5.0)
|
|
|
|
assert completed is True
|
|
assert queue.pending_count == 0
|
|
# No inter-item rate-limit sleep on the drain path.
|
|
mock_sleep.assert_not_called()
|
|
assert mock_updater.update_memory.call_count == 3
|
|
|
|
|
|
def test_cancel_by_agent_drops_matching_pending_and_preserves_others() -> None:
|
|
"""#5037: deleting/clearing an agent must drop its debounce buffer only."""
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="t1", messages=["keep"], agent_name="alice", user_id="u1")
|
|
queue.add(thread_id="t2", messages=["drop"], agent_name="bob", user_id="u1")
|
|
queue.add(thread_id="t3", messages=["other-user"], agent_name="bob", user_id="u2")
|
|
|
|
existing_timer = MagicMock()
|
|
queue._timer = existing_timer
|
|
|
|
removed = queue.cancel_by_agent("bob", user_id="u1")
|
|
|
|
assert removed == 1
|
|
assert queue.pending_count == 2
|
|
assert {(c.agent_name, c.user_id) for c in queue._items} == {("alice", "u1"), ("bob", "u2")}
|
|
existing_timer.cancel.assert_not_called()
|
|
|
|
|
|
def test_cancel_by_agent_all_agents_for_user_cancels_timer_when_empty() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="t1", messages=["a"], agent_name="alice", user_id="u1")
|
|
queue.add(thread_id="t2", messages=["b"], agent_name="bob", user_id="u1")
|
|
queue.add(thread_id="t3", messages=["c"], agent_name="alice", user_id="u2")
|
|
|
|
existing_timer = MagicMock()
|
|
queue._timer = existing_timer
|
|
|
|
removed = queue.cancel_by_agent(user_id="u1", all_agents=True)
|
|
|
|
assert removed == 2
|
|
assert queue.pending_count == 1
|
|
assert queue._items[0].user_id == "u2"
|
|
existing_timer.cancel.assert_not_called()
|
|
|
|
removed_rest = queue.cancel_by_agent(user_id="u2", all_agents=True)
|
|
assert removed_rest == 1
|
|
assert queue.pending_count == 0
|
|
existing_timer.cancel.assert_called_once_with()
|
|
assert queue._timer is None
|
|
|
|
|
|
def test_cancel_by_agent_without_user_id_only_drops_legacy_scope() -> None:
|
|
"""user_id=None mirrors storage: legacy root only, not every user."""
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="t1", messages=["legacy"], agent_name="bob", user_id=None)
|
|
queue.add(thread_id="t2", messages=["alice"], agent_name="bob", user_id="u1")
|
|
queue.add(thread_id="t3", messages=["other"], agent_name="alice", user_id=None)
|
|
|
|
removed = queue.cancel_by_agent("bob", user_id=None)
|
|
|
|
assert removed == 1
|
|
assert {(c.agent_name, c.user_id) for c in queue._items} == {("bob", "u1"), ("alice", None)}
|
|
|
|
|
|
def test_cancel_all_agents_without_user_id_only_drops_legacy_scope() -> None:
|
|
queue = _queue()
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="t1", messages=["legacy-a"], agent_name="a", user_id=None)
|
|
queue.add(thread_id="t2", messages=["legacy-b"], agent_name="b", user_id=None)
|
|
queue.add(thread_id="t3", messages=["named"], agent_name="a", user_id="u1")
|
|
|
|
removed = queue.cancel_by_agent(user_id=None, all_agents=True)
|
|
|
|
assert removed == 2
|
|
assert queue.pending_count == 1
|
|
assert queue._items[0].user_id == "u1"
|
|
|
|
|
|
def test_cancel_by_agent_does_not_touch_in_flight_batch() -> None:
|
|
"""Contexts already pulled out of `_items` keep running (#5037 residual)."""
|
|
mock_updater = MagicMock()
|
|
mock_updater.update_memory.return_value = True
|
|
queue = _queue(mock_updater)
|
|
with patch.object(queue, "_schedule_timer"):
|
|
queue.add(thread_id="t1", messages=["in-flight"], agent_name="bob", user_id="u1")
|
|
queue.add(thread_id="t2", messages=["still-pending"], agent_name="bob", user_id="u1")
|
|
|
|
with queue._lock:
|
|
in_flight = queue._items[:1]
|
|
queue._items = queue._items[1:]
|
|
queue._processing = True
|
|
|
|
removed = queue.cancel_by_agent("bob", user_id="u1")
|
|
assert removed == 1
|
|
assert queue.pending_count == 0
|
|
# Simulate the worker finishing the already-pulled context.
|
|
mock_updater.update_memory(
|
|
messages=in_flight[0].messages,
|
|
thread_id=in_flight[0].thread_id,
|
|
agent_name=in_flight[0].agent_name,
|
|
signals=frozenset(),
|
|
user_id=in_flight[0].user_id,
|
|
trace_id=None,
|
|
bypass_watermark=False,
|
|
)
|
|
mock_updater.update_memory.assert_called_once()
|