feature_flags: Remove remoting
feature flag (#29390)
This PR removes the `remoting` feature flag. The feature is shipped, and we aren't referencing the flag anywhere anymore. Release Notes: - N/A
This commit is contained in:
parent
6bb6be826d
commit
a77db45865
2 changed files with 1 additions and 6 deletions
|
@ -46,7 +46,7 @@ pub async fn seed(config: &Config, db: &Database, force: bool) -> anyhow::Result
|
||||||
let mut first_user = None;
|
let mut first_user = None;
|
||||||
let mut others = vec![];
|
let mut others = vec![];
|
||||||
|
|
||||||
let flag_names = ["remoting", "language-models"];
|
let flag_names = ["language-models"];
|
||||||
let mut flags = Vec::new();
|
let mut flags = Vec::new();
|
||||||
|
|
||||||
let existing_feature_flags = db.list_feature_flags().await?;
|
let existing_feature_flags = db.list_feature_flags().await?;
|
||||||
|
|
|
@ -64,11 +64,6 @@ impl FeatureFlag for PredictEditsRateCompletionsFeatureFlag {
|
||||||
const NAME: &'static str = "predict-edits-rate-completions";
|
const NAME: &'static str = "predict-edits-rate-completions";
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Remoting {}
|
|
||||||
impl FeatureFlag for Remoting {
|
|
||||||
const NAME: &'static str = "remoting";
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct LanguageModels {}
|
pub struct LanguageModels {}
|
||||||
impl FeatureFlag for LanguageModels {
|
impl FeatureFlag for LanguageModels {
|
||||||
const NAME: &'static str = "language-models";
|
const NAME: &'static str = "language-models";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue