Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 1672b0f

Browse files
committed
Merge commit 'd29f0eb33a07ccd4307c3fb5b2120fe925dca938' into master
# Conflicts: # dotnet-server-sdk-shared-tests/LaunchDarkly.ServerSdk.SharedTests/BigSegmentStore/BigSegmentStoreTestConfig.cs # dotnet-server-sdk-shared-tests/LaunchDarkly.ServerSdk.SharedTests/LaunchDarkly.ServerSdk.SharedTests.csproj
2 parents 482b630 + d29f0eb commit 1672b0f

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

dotnet-server-sdk-shared-tests/LaunchDarkly.ServerSdk.SharedTests/BigSegmentStore/BigSegmentStoreTestConfig.cs

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,24 @@ namespace LaunchDarkly.Sdk.Server.SharedTests.BigSegmentStore
2929
public delegate Task ClearDataAction(string prefix);
3030

3131
/// <summary>
32-
/// An asynchronous function that
32+
/// An asynchronous function that updates the store metadata to the specified values.
33+
/// This must be provided separately by the test code because the store interface used by
34+
/// the SDK has no update methods.
3335
/// </summary>
3436
/// <param name="prefix">the database prefix</param>
35-
/// <param name="metadata"></param>
37+
/// <param name="metadata">the data to write to the store</param>
3638
/// <returns>an asynchronous task</returns>
3739
public delegate Task SetMetadataAction(string prefix, StoreMetadata metadata);
3840

3941
/// <summary>
40-
/// An asynchronous function that
42+
/// An asynchronous function that updates the membership state for a user in the store.
43+
/// This must be provided separately by the test code because the store interface used by
44+
/// the SDK has no update methods.
4145
/// </summary>
4246
/// <param name="prefix">the database prefix</param>
43-
/// <param name="userHashKey"></param>
44-
/// <param name="includedSegmentRefs"></param>
45-
/// <param name="excludedSegmentRefs"></param>
47+
/// <param name="userHashKey">the hashed user key</param>
48+
/// <param name="includedSegmentRefs">segment references to be included</param>
49+
/// <param name="excludedSegmentRefs">segment references to be excluded</param>
4650
/// <returns>an asynchronous task</returns>
4751
public delegate Task SetSegmentsAction(string prefix, string userHashKey,
4852
IEnumerable<string> includedSegmentRefs, IEnumerable<string> excludedSegmentRefs);

dotnet-server-sdk-shared-tests/LaunchDarkly.ServerSdk.SharedTests/LaunchDarkly.ServerSdk.SharedTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="LaunchDarkly.ServerSdk" Version="6.1.0-alpha.bigsegments.2" />
16+
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[6.2.0,7.0.0)" />
1717
<PackageReference Include="LaunchDarkly.Logging" Version="[1.0.1,]" />
1818
<PackageReference Include="xunit" Version="2.4.1" />
1919
</ItemGroup>

0 commit comments

Comments
 (0)