Hi All,
We upgraded the ignition from Version 8.0.11 to 8.1.2.we see some issue in Tag event script . its doesn’t trigger the script immediately even after the tag value changed .But if i move the the same script to Gateway events, its working fine(Means it triggers the script immediately when the tag value changes )
Please help
All tag events share a thread pool. If you have many events, running slow operations, other tag events will have to wait. Project event scripts run from their own thread pools, and can have a dedicated thread if necessary. You can also attach many tags to a single event via project events.
Using a gateway event is the Right Answer™.
2 Likes
Thanks a lot Phil Turmel,Understand