Skip to content

Commit

Permalink
Fix default value of Historizing variable attribute
Browse files Browse the repository at this point in the history
in uaprotocol_hand.py

According to the specification, "[t]he Historizing attribute indicates
whether the Server is actively collecting data for the history of the
Variable. [...] Default value is FALSE."
  • Loading branch information
FMeinicke committed Dec 4, 2024
1 parent 302c434 commit 3a315c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncua/ua/uaprotocol_hand.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def __post_init__(self):
@dataclass
class VariableAttributes(auto.VariableAttributes):
ArrayDimensions: List[uatypes.UInt32] = None
Historizing: uatypes.Boolean = True
Historizing: uatypes.Boolean = False
AccessLevel: uatypes.Byte = auto.AccessLevel.CurrentRead.mask
UserAccessLevel: uatypes.Byte = auto.AccessLevel.CurrentRead.mask
SpecifiedAttributes: uatypes.UInt32 = (
Expand Down

0 comments on commit 3a315c3

Please sign in to comment.