We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 199531e commit 1c2b918Copy full SHA for 1c2b918
1 file changed
src/main/java/edu/tamu/app/service/SystemMonitorService.java
@@ -48,7 +48,7 @@ public void updateAll() {
48
if (serviceStatus != service.getStatus()) {
49
logger.debug("Updating the status of [" + service.getName() + "] to: " + serviceStatus);
50
service.setStatus(serviceStatus);
51
- serviceRepo.save(service);
+ serviceRepo.update(service);
52
}
53
} catch (MalformedURLException e) {
54
logger.error("Did not check the status of [" + service.getName() + "] due to a malformed URL: " + service.getServiceUrl());
0 commit comments