Skip to content

Commit

Permalink
fix; AgonesSdk Rest Port to 9358
Browse files Browse the repository at this point in the history
  • Loading branch information
guitarrapc committed Dec 26, 2019
1 parent 0853563 commit 16aa1f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Agones/AgonesSdk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public class AgonesSdk : IAgonesSdk
static readonly ConcurrentDictionary<string, StringContent> jsonCache = new ConcurrentDictionary<string, StringContent>();

// ref: sdk server https://github.com/googleforgames/agones/blob/master/cmd/sdk-server/main.go
// grpc: localhost on port 59357
// http: localhost on port 59358
readonly Uri SideCarAddress = new Uri("http://127.0.0.1:59358");
// grpc: localhost on port 9357
// http: localhost on port 9358
readonly Uri SideCarAddress = new Uri("http://127.0.0.1:9358");
readonly CancellationTokenSource cancellationTokenSource = new CancellationTokenSource();
readonly IHttpClientFactory _httpClientFactory;
readonly ILogger<IAgonesSdk> _logger;
Expand Down

0 comments on commit 16aa1f7

Please sign in to comment.