Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Remove some verbose logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulf Lilleengen committed Nov 2, 2017
1 parent 1b23a7d commit 54be7fc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ private JsonObject responseHandler(AsyncResult<HttpResponse<JsonObject>> ar) {

JsonObject doRequestNTimes(int retry, Callable<JsonObject> fn) throws Exception {
return TestUtils.doRequestNTimes(retry, () -> {
Logging.log.info("Trying to reload endpoint, remaining iterations: " + retry);
endpoint = openshift.getRestEndpoint();
return fn.call();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ private static int getPort(Service service, String portName) {
public Endpoint getRestEndpoint() throws InterruptedException {
Route route = client.routes().inNamespace(globalNamespace).withName("restapi").get();
Endpoint endpoint = new Endpoint(route.getSpec().getHost(), 80);
Logging.log.info("Testing endpoint : " + endpoint);
if (TestUtils.resolvable(endpoint)) {
return endpoint;
} else {
Expand Down

0 comments on commit 54be7fc

Please sign in to comment.