Skip to content

Commit

Permalink
Merge pull request #3211 from KaushikMalapati/latching
Browse files Browse the repository at this point in the history
Set latching to true by default
  • Loading branch information
shroffk authored Jan 2, 2025
2 parents c9381d0 + 8f7c726 commit 33e8410
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private void processPV(final AlarmClientNode parent, final Element node) throws
}


pv.setLatching(XMLUtil.getChildBoolean(node, TAG_LATCHING).orElse(false));
pv.setLatching(XMLUtil.getChildBoolean(node, TAG_LATCHING).orElse(true));
pv.setAnnunciating(XMLUtil.getChildBoolean(node, TAG_ANNUNCIATING).orElse(false));

XMLUtil.getChildString(node, TAG_DESCRIPTION).ifPresent(pv::setDescription);
Expand Down

0 comments on commit 33e8410

Please sign in to comment.