Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ This provider allows for using LaunchDarkly with the OpenFeature SDK for .NET.

This provider is designed primarily for use in multi-user systems such as web servers and applications. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.

> [!WARNING]
> This is a beta version. The API is not stabilized and may introduce breaking changes.

> [!NOTE]
> This OpenFeature provider uses production versions of the LaunchDarkly SDK, which adhere to our standard [versioning policy](https://docs.launchdarkly.com/home/relay-proxy/versioning).

# LaunchDarkly overview

[LaunchDarkly](https://www.launchdarkly.com) is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. [Get started](https://docs.launchdarkly.com/home/getting-started) using LaunchDarkly today!
Expand Down
1 change: 0 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"versioning": "default",
"include-v-in-tag": false,
"include-component-in-tag": false,
Expand Down
2 changes: 1 addition & 1 deletion src/LaunchDarkly.OpenFeature.ServerProvider/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public override Task Initialize(EvaluationContext context)

_client.DataSourceStatusProvider.StatusChanged += StatusChangeHandler;

// We start listening for status changes and then we check the current status change. If we do not check
// We start listening for status changes, and then we check the current status change. If we do not check
// then we could have missed a status change. If we check before registering a listener, then we could
// miss a change between checking and listening. Doing it this way we can get duplicates, but we filter
// when the status does not actually change, so we won't emit duplicate events.
Expand Down