- edited description
Issue #50
new
e.g.
The if case below only logs the error (which might be enough if we use something like logstash & a notifcation system)
Response response = WS.url(String.format(API_URL, owner, project)).get().get(); if ((response.getStatus() != Http.Status.OK) || response.asJson() == null) { Logger.error("Bitbucket did not return a valid response on the current execution of run()..."); } else {
Comments (1)
-
reporter - Log in to comment