Skip to content

Commit

Permalink
Do not update subapp pin watches without connections or invalid values
Browse files Browse the repository at this point in the history
  • Loading branch information
mx990 authored and azoitl committed Nov 11, 2024
1 parent c455ec2 commit eeed096
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,14 @@ public void removeWatch() throws DebugException {

@Override
public void updateValue(final DeploymentDebugWatchData watchData) {
if (watches.isEmpty()) {
return;
}
for (final IWatch watch : watches) {
watch.updateValue(watchData);
if (!watch.isAlive()) {
return;
}
}
updateValue(watches.stream().map(IVariableWatch::getInternalValue).toList());
}
Expand Down

0 comments on commit eeed096

Please sign in to comment.