Remove puffin experimental feature

This commit is contained in:
Clément Renault 2024-05-27 15:59:28 +02:00
parent dc949ab46a
commit b6d450d484
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
3 changed files with 2 additions and 27 deletions

View file

@ -68,19 +68,6 @@ impl RoFeatures {
.into())
}
}
pub fn check_puffin(&self) -> Result<()> {
if self.runtime.export_puffin_reports {
Ok(())
} else {
Err(FeatureNotEnabledError {
disabled_action: "Outputting Puffin reports to disk",
feature: "export puffin reports",
issue_link: "https://github.com/meilisearch/product/discussions/693",
}
.into())
}
}
}
impl FeatureData {