Commit 85876e23 authored by Kammleiter's avatar Kammleiter
Browse files

temp disable shutdown

parent 73509699
...@@ -45,13 +45,13 @@ public class TaskUpload { ...@@ -45,13 +45,13 @@ public class TaskUpload {
response = new RestTemplate().postForEntity(this.backendUrl + "?jobID=" + env, jUnitResult, Void.class); response = new RestTemplate().postForEntity(this.backendUrl + "?jobID=" + env, jUnitResult, Void.class);
} catch (Exception e) { } catch (Exception e) {
LOG.error("Error while Posting to backend: " + e.getMessage()); LOG.error("Error while Posting to backend: " + e.getMessage());
System.exit(0); // System.exit(0);
} }
if (response.getStatusCode() != HttpStatus.OK) { if (response.getStatusCode() != HttpStatus.OK) {
LOG.error("Error while Posting to backend: " + response.toString()); LOG.error("Error while Posting to backend: " + response.toString());
} else { } else {
LOG.info("Successfully tested and sent"); LOG.info("Successfully tested and sent");
} }
System.exit(0); // System.exit(0);
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment