Hi team, from the current code, the default value of StopState is FeatureStopState.Stopping
|
public FeatureStopState StopState { get; set; } = FeatureStopState.Stopping; |
Want to propose using Stopped as the default value, since sometimes we may want to check the feature flag in the StopAsync logic.
Hi team, from the current code, the default value of
StopStateisFeatureStopState.Stoppingdotnet-sdk/src/OpenFeature.Hosting/FeatureLifecycleStateOptions.cs
Line 17 in f1bf7a6
Want to propose using
Stoppedas the default value, since sometimes we may want to check the feature flag in theStopAsynclogic.