Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repository management(Nexus) update #35

Merged
merged 1 commit into from
Sep 19, 2024
Merged
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
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