hubcio opened a new pull request, #3242: URL: https://github.com/apache/iggy/pull/3242
The accessor was gated by `#[cfg(any(test, debug_assertions))]`, which hid it from the `installer_panic_cleanup` integration test in release builds: integration tests live in a separate crate, so the library's `cfg(test)` is unset, and `debug_assertions` is off under `--release`. Both predicates failed only in the release × integration-test quadrant, which CI does not exercise. Drop the cfg and mark `#[doc(hidden)]`. The accessor is a zero-cost getter over a `RefCell<Vec<_>>` and carries no prod risk; doc-hidden preserves the "test-only invariant probe" signal without breaking external test crates. Fixes #3234 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
