Skip to content

Commit 35a4033

Browse files
committed
connect on ipv4 only
speeds up first connection significantly
1 parent dc6715b commit 35a4033

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

RGB.NET.Devices.Wooting/Grpc/WootingGrpcDeviceProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public WootingGrpcDeviceProvider()
6262
/// <inheritdoc />
6363
protected override void InitializeSDK()
6464
{
65-
_channel = GrpcChannel.ForAddress("http://localhost:50051");
65+
_channel = GrpcChannel.ForAddress("http://127.0.0.1:50051");
6666
_client = new RgbSdkService.RgbSdkServiceClient(_channel);
6767
}
6868

0 commit comments

Comments
 (0)