You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Grouping features by @FeatureGroup is not working in kotlin
@Configuration
class FeaturesConfiguration {
@Bean
fun featureProvider() = EnumClassFeatureProvider(Features::class.java)
...
@FeatureGroup
@Label("Fancy group")
annotation class MyFeaturesGroup
enum class Features {
@MyFeaturesGroup
@EnabledByDefault
ANY;
fun isActive(): Boolean {
return FeatureContext.getFeatureManager().isActive { name }
}
}
Console shows all ungrupped
The text was updated successfully, but these errors were encountered:
Grouping features by
@FeatureGroup
is not working in kotlinConsole shows all ungrupped

The text was updated successfully, but these errors were encountered: