You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the luaevent.lua script file, there is an attempt to set the '__mode' attribute of to 'kv' in order to enable automatic collection for luaevent elements, however the syntax is wrong:
setmetatable({}, {'__mode', 'kv'})
should be
setmetatable({}, {__mode = 'kv'})
Upon review, this part of the system needs rework.
The text was updated successfully, but these errors were encountered:
In the luaevent.lua script file, there is an attempt to set the '__mode' attribute of to 'kv' in order to enable automatic collection for luaevent elements, however the syntax is wrong:
should be
Upon review, this part of the system needs rework.
The text was updated successfully, but these errors were encountered: