Skip to content

Commit 6c23f21

Browse files
authored
feat: update FeatureLifecycleStateOptions.StopState default to Stopped (#414)
## This PR - feat: update FeatureLifecycleStateOptions.StopState default to Stopped - refactor: remove the default options setup since it's same as default value, no need to configure ### Related Issues <!-- add here the GitHub issue that this PR resolves if applicable --> Fixes #410 --------- Signed-off-by: Weihan Li <[email protected]>
1 parent 84ea288 commit 6c23f21

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/OpenFeature.Hosting/FeatureLifecycleStateOptions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ public class FeatureLifecycleStateOptions
1414
/// <summary>
1515
/// Gets or sets the state during the feature shutdown lifecycle.
1616
/// </summary>
17-
public FeatureStopState StopState { get; set; } = FeatureStopState.Stopping;
17+
public FeatureStopState StopState { get; set; } = FeatureStopState.Stopped;
1818
}

src/OpenFeature.Hosting/OpenFeatureBuilderExtensions.cs

+1-9
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,7 @@ public static partial class OpenFeatureBuilderExtensions
1919
/// <returns>The <see cref="OpenFeatureBuilder"/> instance.</returns>
2020
public static OpenFeatureBuilder AddHostedFeatureLifecycle(this OpenFeatureBuilder builder, Action<FeatureLifecycleStateOptions>? configureOptions = null)
2121
{
22-
if (configureOptions == null)
23-
{
24-
builder.Services.Configure<FeatureLifecycleStateOptions>(cfg =>
25-
{
26-
cfg.StartState = FeatureStartState.Starting;
27-
cfg.StopState = FeatureStopState.Stopping;
28-
});
29-
}
30-
else
22+
if (configureOptions is not null)
3123
{
3224
builder.Services.Configure(configureOptions);
3325
}

0 commit comments

Comments
 (0)