Skip to content

Commit

Permalink
upgrade fflags (DynamoDS#15060)
Browse files Browse the repository at this point in the history
  • Loading branch information
pinzart90 authored Mar 27, 2024
1 parent 603fa2f commit 199faa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Tools/DynamoFeatureFlags/DynamoFeatureFlags.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<ImportGroup Label="PropertySheets">
<Import Project="$(SolutionDir)Config/CS_SDK.props" />
</ImportGroup>
Expand All @@ -10,7 +10,7 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="LaunchDarkly.ClientSdk" Version="2.0.1">
<PackageReference Include="LaunchDarkly.ClientSdk" Version="5.1.0">
</PackageReference>
</ItemGroup>
</Project>
Expand Down
4 changes: 2 additions & 2 deletions src/Tools/DynamoFeatureFlags/FeatureFlagsClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
Expand Down Expand Up @@ -107,7 +107,7 @@ internal FeatureFlagsClient(string userkey, string mobileKey = null, bool testMo
internal void Init(string mobileKey)
{
//start up client.
ldClient = LaunchDarkly.Sdk.Client.LdClient.Init(mobileKey, user,TimeSpan.FromSeconds(5));
ldClient = LaunchDarkly.Sdk.Client.LdClient.Init(mobileKey, LaunchDarkly.Sdk.Client.ConfigurationBuilder.AutoEnvAttributes.Disabled, user, TimeSpan.FromSeconds(5));
if (ldClient.Initialized)
{
MessageLogged?.Invoke($"launch darkly initalized");
Expand Down

0 comments on commit 199faa9

Please sign in to comment.