Commit f36bef06 authored by Volodymyr Kozachynskyi's avatar Volodymyr Kozachynskyi Committed by oroulet

now dv returns corrent timestamps

parent f86c836b
......@@ -119,7 +119,7 @@ class HistorySQLite(HistoryStorageInterface):
for row in rows:
# rebuild the data value object
dv = ua.DataValue(variant_from_binary(Buffer(row[6])))
dv.SourceTimestamp = row[1]
dv.ServerTimestamp = row[1]
dv.SourceTimestamp = row[2]
dv.StatusCode = ua.StatusCode(row[3])
results.append(dv)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment