Skip to content

Commit

Permalink
Repository management(Nexus) update
Browse files Browse the repository at this point in the history
  • Loading branch information
Strato-YangSungHun committed Sep 19, 2024
1 parent f4b90d3 commit cd1e170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
@Component
public class NexusRestClient {

private static String NEXUS_API_BASE_URL = "/service/rest/";
private static String NEXUS_API_BASE_URL = "service/rest";

private static final int CONNECT_TIMEOUT = 10000;
private static final int READ_TIMEOUT = 10000;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/kr/co/mcmp/oss/nexus/api/NexusStatusApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class NexusStatusApi {
private NexusRestClient client;

public HttpStatus statusEndpoint(OssDto nexus) {
final String path = "/v1/status";
final String path = "v1/status";
String url = client.getUriBuilder(nexus.getOssUrl(), path).build().toUriString();
log.debug("endpoint url : {}", url);

Expand Down

0 comments on commit cd1e170

Please sign in to comment.