Skip to content

Commit

Permalink
Merge pull request #3030 from jeonghanlee/alarm-disable-until-bug
Browse files Browse the repository at this point in the history
"Disable Until" issue to the alarm log table of the Phoebus
  • Loading branch information
shroffk authored May 31, 2024
2 parents dd1c215 + 5f907bc commit d6a2137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public Map<String, String> sourceMap() {
map.put("config", getConfig());
map.put("user", getUser());
map.put("host", getHost());
map.put("enabled", enabled.toString());
map.put("enabled", String.valueOf(enabled.enabled));
map.put("latching", Boolean.toString(isLatching()));
map.put("config_msg", toString());
map.put("message_time", formatter.withZone(ZoneId.of("UTC")).format(getMessage_time()));
Expand Down

0 comments on commit d6a2137

Please sign in to comment.