Disable /search by default (#20252)
This stops us sending GetCachedEmbeddings requests which frequently time out after 10s, and block the collab connection. Release Notes: - N/A
This commit is contained in:
parent
27cdc6cb93
commit
765626a007
2 changed files with 21 additions and 14 deletions
|
@ -21,6 +21,10 @@ pub(crate) struct SearchSlashCommandFeatureFlag;
|
|||
|
||||
impl FeatureFlag for SearchSlashCommandFeatureFlag {
|
||||
const NAME: &'static str = "search-slash-command";
|
||||
|
||||
fn enabled_for_staff() -> bool {
|
||||
false
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) struct SearchSlashCommand;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue