Skip to content

Commit

Permalink
query RemoteServiceIp
Browse files Browse the repository at this point in the history
  • Loading branch information
jj22ee committed Nov 21, 2024
1 parent 0843184 commit 3009ecf
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ public void validate() throws Exception {
if (context.getRemoteServiceName() != null && !context.getRemoteServiceName().isEmpty()) {
serviceNames.add(context.getRemoteServiceName());
}
if (context.getRemoteServiceIp() != null && !context.getRemoteServiceIp().isEmpty()) {
serviceNames.add(context.getRemoteServiceIp() + ":8080");
}
if (context.getTestingId() != null && !context.getTestingId().isEmpty()) {
remoteTargetNames.add("::s3:::e2e-test-bucket-name-" + context.getTestingId());
}
Expand Down

0 comments on commit 3009ecf

Please sign in to comment.