Hi everyone,
I’ve recently migrated projects running on 8.1 to 8.3 and noticed that there has been a few breaking changes and I’m stuck on this particular fault message. In essence, I’m running value changed script on a tag that uses system.tag.storeTagHistory() in the following manner:
def valueChanged(tag, tagPath, previousValue, currentValue, initialChange, missedEvents):
historyProvider = ‘name_of_the_historian’
tagProvider = ‘name_of_the_provider’
paths = [tagPath]
values = [currentValue.value]
system.tag.storeTagHistory(historyProvider, tagProvider, paths, values)
Whenever this script is triggered, I see a warning with the message: SF Engine 'name_of_the_historian' does not accept data 'DefaultPersistentFlavor{signature='history_set', systemType=Tag History}' and also no data is inserted into the database.
Does anyone know what causes this message to appear? Didn’t have this problem with 8.1 but it started happening when I migrated to 8.3
Many thanks in advance.