Skip to content

Commit 780187a

Browse files
sjuddConvex, Inc.
authored andcommitted
Use the index type not 'vector' to log in search flusher (#26944)
GitOrigin-RevId: ae2d5e13f09d5c53f6a2a1072c2a173760a945a8
1 parent 43e682c commit 780187a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/database/src/index_workers/search_flusher.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,10 @@ impl<RT: Runtime, T: SearchIndex + 'static> SearchFlusher<RT, T> {
302302
},
303303
};
304304
if let Some(build_reason) = needs_backfill {
305-
tracing::info!("Queueing vector index for rebuild: {name:?} ({build_reason:?})");
305+
tracing::info!(
306+
"Queueing {} index for rebuild: {name:?} ({build_reason:?})",
307+
self.index_type_name()
308+
);
306309
let table_id = name.table();
307310
let by_id_metadata = IndexModel::new(&mut tx)
308311
.by_id_index_metadata(*table_id)

0 commit comments

Comments
 (0)