diff --git a/crates/semantic_index/src/semantic_index.rs b/crates/semantic_index/src/semantic_index.rs index f9ac6a0ae1..e06bfce48b 100644 --- a/crates/semantic_index/src/semantic_index.rs +++ b/crates/semantic_index/src/semantic_index.rs @@ -32,7 +32,7 @@ use std::{ time::{Duration, Instant, SystemTime}, }; use util::{ - channel::{ReleaseChannel, RELEASE_CHANNEL, RELEASE_CHANNEL_NAME}, + channel::{RELEASE_CHANNEL_NAME}, http::HttpClient, paths::EMBEDDINGS_DIR, ResultExt, @@ -55,11 +55,6 @@ pub fn init( .join(Path::new(RELEASE_CHANNEL_NAME.as_str())) .join("embeddings_db"); - // This needs to be removed at some point before stable. - if *RELEASE_CHANNEL == ReleaseChannel::Stable { - return; - } - cx.subscribe_global::({ move |event, cx| { let Some(semantic_index) = SemanticIndex::global(cx) else { @@ -282,7 +277,6 @@ impl SemanticIndex { pub fn enabled(cx: &AppContext) -> bool { settings::get::(cx).enabled - && *RELEASE_CHANNEL != ReleaseChannel::Stable } pub fn status(&self, project: &ModelHandle) -> SemanticIndexStatus {