Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ce/spec/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"servers": [
{
"url": "http://localhost:8080",
"url": "http://localhost:33267",
"description": "Generated server url"
}
],
Expand Down
4 changes: 2 additions & 2 deletions ce/src/main/java/org/thingsboard/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static List<Pair> parameterToPairs(
public ApiClient() {
this.builder = createDefaultHttpClientBuilder();
this.mapper = createDefaultObjectMapper();
updateBaseUri("http://localhost:8080");
updateBaseUri("http://localhost:33267");
interceptor = null;
readTimeout = null;
connectTimeout = null;
Expand All @@ -191,7 +191,7 @@ public ApiClient() {
public ApiClient(HttpClient.Builder builder, ObjectMapper mapper, String baseUri) {
this.builder = builder;
this.mapper = mapper;
updateBaseUri(baseUri != null ? baseUri : "http://localhost:8080");
updateBaseUri(baseUri != null ? baseUri : "http://localhost:33267");
interceptor = null;
readTimeout = null;
connectTimeout = null;
Expand Down
Loading