fix the tests and add tests on the experimental features

This commit is contained in:
Tamo 2024-02-05 14:05:24 +01:00 committed by Louis Dureuil
parent 7793ba67a4
commit e23ec4886d
No known key found for this signature in database
8 changed files with 50 additions and 6 deletions

View file

@ -538,7 +538,10 @@ impl Opt {
}
pub(crate) fn to_instance_features(&self) -> InstanceTogglableFeatures {
InstanceTogglableFeatures { metrics: self.experimental_enable_metrics }
InstanceTogglableFeatures {
metrics: self.experimental_enable_metrics,
logs_route: self.experimental_enable_logs_route,
}
}
}