Removed the "remote_compaction" feature flag (#10840)

This feature is always on now
This commit is contained in:
Eric Traut
2026-02-05 23:54:57 -08:00
committed by GitHub
parent f61226d32a
commit dd80e332c4
9 changed files with 11 additions and 57 deletions
+1 -1
View File
@@ -3877,7 +3877,7 @@ pub(crate) async fn run_turn(
}
async fn run_auto_compact(sess: &Arc<Session>, turn_context: &Arc<TurnContext>) {
if should_use_remote_compact_task(sess.as_ref(), &turn_context.provider) {
if should_use_remote_compact_task(&turn_context.provider) {
run_inline_remote_auto_compact_task(Arc::clone(sess), Arc::clone(turn_context)).await;
} else {
run_inline_auto_compact_task(Arc::clone(sess), Arc::clone(turn_context)).await;