From 05890d6e250f6dd650511cce1d049d032910c80d Mon Sep 17 00:00:00 2001 From: Zhengchao An Date: Thu, 9 Jul 2026 04:23:29 +0800 Subject: [PATCH] fix(ecstore): pass the new allow_inplace_legacy_fallback arg in codec streaming arity tests (#4573) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #4560 added a 15th parameter (allow_inplace_legacy_fallback) to build_codec_streaming_part_reader while the negative arity tests from a concurrently developed branch still call it with 14 arguments — the two changes merged cleanly textually but broke the workspace test build on main (E0061 in set_disk/read.rs), failing CI for every open PR. Pass false at both call sites: these tests assert Err outcomes (oversized part, missing quorum) that are independent of the fallback mode, and false preserves the historical whole-request fallback semantics used by eager first-part reads.