Skip to content

Commit 390205a

Browse files
authored
chore: in-memory UpdateFlags to UpdateFlagsAsync (#298)
I was doing an audit before the release and found this one method could use a suffix update. Signed-off-by: Todd Baert <[email protected]>
1 parent bb4f352 commit 390205a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/OpenFeature/Providers/Memory/InMemoryProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ public InMemoryProvider(IDictionary<string, Flag>? flags = null)
4343
}
4444

4545
/// <summary>
46-
/// Updating provider flags configuration, replacing all flags.
46+
/// Update provider flag configuration, replacing all flags.
4747
/// </summary>
4848
/// <param name="flags">the flags to use instead of the previous flags.</param>
49-
public async Task UpdateFlags(IDictionary<string, Flag>? flags = null)
49+
public async Task UpdateFlagsAsync(IDictionary<string, Flag>? flags = null)
5050
{
5151
var changed = this._flags.Keys.ToList();
5252
if (flags == null)

test/OpenFeature.Tests/Providers/Memory/InMemoryProviderTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public async Task GetString_ContextSensitive_ShouldEvaluateWithReasonAndVariant(
170170
public async Task EmptyFlags_ShouldWork()
171171
{
172172
var provider = new InMemoryProvider();
173-
await provider.UpdateFlags();
173+
await provider.UpdateFlagsAsync();
174174
Assert.Equal("InMemory", provider.GetMetadata().Name);
175175
}
176176

@@ -216,7 +216,7 @@ public async Task PutConfiguration_shouldUpdateConfigAndRunHandlers()
216216
Assert.True(details.Value);
217217

218218
// update flags
219-
await provider.UpdateFlags(new Dictionary<string, Flag>(){
219+
await provider.UpdateFlagsAsync(new Dictionary<string, Flag>(){
220220
{
221221
"new-flag", new Flag<string>(
222222
variants: new Dictionary<string, string>(){

0 commit comments

Comments
 (0)