Skip to content
Snippets Groups Projects
Commit 8493d026 authored by Gwenaelle ABEILLE's avatar Gwenaelle ABEILLE
Browse files

rollback previous change for DevState that must be converted to int values and...

rollback previous change for DevState that must be converted to int values and not String (used to insert values in TDB). (SOLEIL Jira TANGOARCH-719)
parent f6cbb949
Branches
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ public class ScalarEvent extends ArchivingEvent<boolean[]> {
case AttrWriteType._READ:
case AttrWriteType._WRITE:
if (value instanceof DevState) {
valueToString = value.toString();
valueToString = toString(((DevState) value).value());
} else {
valueToString = toString(value);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment