Skip to content

Commit 4341432

Browse files
committed
Use same log4net and StackExchange.Redis used by net classes
1 parent 4789e2a commit 4341432

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dotnet/src/extensions/Azure/Handlers/GeneXus.Deploy.AzureFunctions.Handlers.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="log4net" Version="2.0.12" />
8+
<PackageReference Include="log4net" Version="2.0.11" />
99
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.13" />
1010
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="4.2.1" />
1111
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="4.0.4" />
1212
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.0.1" />
1313
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.0.3" OutputItemType="Analyzer" />
1414
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.1.0" />
1515
<PackageReference Include="Microsoft.Data.SqlClient" Version="1.0.19269.1" />
16-
<PackageReference Include="StackExchange.Redis" Version="2.2.50" />
16+
<PackageReference Include="StackExchange.Redis" Version="2.0.593" />
1717
</ItemGroup>
1818
<ItemGroup>
1919
<ProjectReference Include="..\..\..\dotnetcore\GxClasses.Web\GxClasses.Web.csproj" />

dotnet/src/extensions/Azure/Handlers/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static async Task Main()
4040
{
4141
connectionString = sessionService.ConnectionString;
4242
services.AddSingleton<ICacheService2>(x => new Redis(connectionString));
43-
ConnectionMultiplexer.SetFeatureFlag("preventthreadtheft", true);
43+
//ConnectionMultiplexer.SetFeatureFlag("preventthreadtheft", true);
4444
}
4545
else
4646
services.AddSingleton<ICacheService2>(x => new InProcessCache());

0 commit comments

Comments
 (0)