Skip to content

Commit

Permalink
incorporated review comments
Browse files Browse the repository at this point in the history
Signed-off-by: msvinaykumar <vinakuma@redhat.com>
  • Loading branch information
msvinaykumar committed Oct 8, 2024
1 parent eb02284 commit 0f2af81
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void run() {
if (includeLabelsBuilder.length() > 0) {
includeLabelsBuilder.setLength(includeLabelsBuilder.length() - 1);
}
LOGGER.info("Include Labels: " + includeLabelsBuilder.toString());
LOGGER.debug("Include Labels: " + includeLabelsBuilder.toString());
uniqueKey = includeLabelsBuilder.toString();
}
}
Expand Down Expand Up @@ -200,7 +200,7 @@ public void run() {
}
recommendationsRequiredExperiments.add(experiment_name);
} catch (Exception e) {
LOGGER.info(e.getMessage());
LOGGER.error(e.getMessage());
}
}
}
Expand Down Expand Up @@ -241,9 +241,7 @@ public void run() {
int statusCode = 0;
try {
jobStatusMap.get(jobID).getData().getRecommendations().getData().moveToProgress(name);
LOGGER.info(String.format(KruizeDeploymentInfo.recommendations_url, name));
statusCode = connection.getResponseCode();
LOGGER.info(String.format(KruizeDeploymentInfo.recommendations_url, name));
} catch (IOException e) {
LOGGER.error(e.getMessage());
throw new RuntimeException(e);
Expand Down

0 comments on commit 0f2af81

Please sign in to comment.