[core] refresh inline compaction comments [ci changed_files]

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Cooper Gamble
2026-03-10 02:31:34 +00:00
parent bd6733a68c
commit 0c88f58519
3 changed files with 5 additions and 5 deletions

View File

@@ -733,8 +733,8 @@ async fn auto_server_side_compaction_follow_ups_use_compaction_checkpoint() -> R
}
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn auto_server_side_compaction_retries_without_committing_incomplete_checkpoint() -> Result<()>
{
async fn auto_server_side_compaction_retries_without_persisting_failed_compaction_item()
-> Result<()> {
skip_if_no_network!(Ok(()));
let compact_threshold = 120;
@@ -805,7 +805,7 @@ async fn auto_server_side_compaction_retries_without_committing_incomplete_check
let third_turn_request = &requests[3];
assert!(
!third_turn_request.body_contains_text(&inline_summary),
"failed inline compaction should not rewrite local history before a retry succeeds"
"failed inline compaction should not persist its compaction item into later turns"
);
assert!(
third_turn_request.body_contains_text(first_turn_text),