[Java] Fix APIClient basePath Configuration (#14600)

* Nullify serverIndex in java ApiClient.setBasePath

Restores previous behavior broken between v6.2.1 and v6.3.0

* Regenerate samples
This commit is contained in:
Tom Deering
2023-02-09 03:27:57 -07:00
committed by GitHub
parent 687bace3f3
commit 4664f6c46c
11 changed files with 11 additions and 0 deletions

View File

@@ -160,6 +160,7 @@ public class ApiClient {
*/
public ApiClient setBasePath(String basePath) {
this.basePath = basePath;
this.serverIndex = null;
return this;
}