Skip to content

Commit

Permalink
undo unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anitarua committed Mar 2, 2024
1 parent 2d6d921 commit daaa54a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/Momento.Sdk/Config/Configurations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ public static IConfiguration V1(ILoggerFactory? loggerFactory = null)
ITransportStrategy transportStrategy = new StaticTransportStrategy(
loggerFactory: finalLoggerFactory,
maxConcurrentRequests: 400, // max of 4 connections https://github.com/momentohq/client-sdk-dotnet/issues/460
grpcConfig: new StaticGrpcConfiguration(deadline: TimeSpan.FromMilliseconds(1100))
);
grpcConfig: new StaticGrpcConfiguration(deadline: TimeSpan.FromMilliseconds(1100)));
return new Default(finalLoggerFactory, retryStrategy, transportStrategy);
}
}
Expand Down
1 change: 0 additions & 1 deletion src/Momento.Sdk/Config/Transport/IGrpcConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Net.Http;
using Grpc.Net.Client;

namespace Momento.Sdk.Config.Transport;
Expand Down

0 comments on commit daaa54a

Please sign in to comment.