Skip to content

Commit

Permalink
fix: corrected bad EvitaClientConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
Khertys committed Oct 20, 2023
1 parent fc83912 commit df3c684
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions EvitaDB.Test/SetupFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,16 +124,10 @@ await container.StartAsync()
}
}

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

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

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

0 comments on commit df3c684

Please sign in to comment.