Skip to content

Commit

Permalink
fixup: format
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert committed Apr 24, 2024
1 parent f972517 commit 7317ef2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"rollForward": "latestFeature",
"version": "8.0.203"
"version": "8.0.104"
}
}
3 changes: 2 additions & 1 deletion src/OpenFeature.Contrib.Providers.Flagd/FlagdProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ public override Task Initialize(EvaluationContext context)
_status = ProviderStatus.Ready;
}).ContinueWith((t) =>
{
if (t.IsFaulted) {
if (t.IsFaulted)
{
_status = ProviderStatus.Error;
throw t.Exception;
};
Expand Down

0 comments on commit 7317ef2

Please sign in to comment.