Skip to content

Commit

Permalink
Use "http" for Management API connection instead of "https" (#1372)
Browse files Browse the repository at this point in the history
  • Loading branch information
emerkle826 authored and adejanovski committed Sep 6, 2023
1 parent 8322477 commit 86dd3e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
<dependency>
<groupId>io.k8ssandra</groupId>
<artifactId>datastax-mgmtapi-client-openapi</artifactId>
<version>0.1.0-5506d26</version>
<version>0.1.0-4778105</version>
</dependency>
<!--test scope -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private ICassandraManagementProxy connectImpl(Node node)
throw new ReaperException("Could not get PID for node " + node.getHostname());
}
DefaultApi apiClient = new DefaultApi(
new ApiClient().setBasePath("https://" + node.getHostname() + ":" + managementPort + rootPath));
new ApiClient().setBasePath("http://" + node.getHostname() + ":" + managementPort + rootPath));

InstrumentedScheduledExecutorService statusTracker = new InstrumentedScheduledExecutorService(
jobStatusPollerExecutor, metricRegistry);
Expand Down

0 comments on commit 86dd3e5

Please sign in to comment.