Skip to content

Commit

Permalink
fix evita client configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Khertys committed Oct 18, 2023
1 parent 634da71 commit 84aee92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EvitaDB.TestX/SetupFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ await container.StartAsync()
throw;
}
}

EvitaClientConfiguration configuration = new EvitaClientConfiguration.Builder()
.SetHost(Host)
.SetPort(GrpcPort)
.SetSystemApiPort(SystemApiPort)
.SetPort(container.GetMappedPublicPort(GrpcPort))
.SetSystemApiPort(container.GetMappedPublicPort(SystemApiPort))
.Build();

// create a new evita client with the specified configuration
Expand Down

0 comments on commit 84aee92

Please sign in to comment.