We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 588f2ce + bad0196 commit 8fa899bCopy full SHA for 8fa899b
core/pv/src/main/java/org/phoebus/pv/pva/Decoders.java
@@ -155,8 +155,10 @@ static Time decodeTime(final PVAStructure struct)
155
timestamp = NO_TIME;
156
else
157
timestamp = Instant.ofEpochSecond(sec.get(), nano.get());
158
- final PVAInt user = time.get("userTag");
159
- usertag = user == null ? NO_USERTAG : user.get();
+ // 2022-10 EPICS Developers meeting proposed 64 bit (Long) userTag
+ // Allow for that, but only use integer until VType is updated
160
+ final PVANumber user = time.get("userTag");
161
+ usertag = user == null ? NO_USERTAG : user.getNumber().intValue();
162
}
163
164
{
0 commit comments