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
Steps to recreate:
Create a new python plugin and add the following lines at the end:
eg:
class MyPythonPlugin(PluginBase):
def main(self):
core = self.core
root_node = self.root_node
active_node = self.active_node
name = core.get_attribute(active_node, 'name')
logger.info('ActiveNode at "{0}" has name {1}'.format(core.get_path(active_node), name))
self.result_set_success(False)
self.result_set_error('This should fail')
The text was updated successfully, but these errors were encountered:
Following two functions give errors when invoked during the debug mode using run_debug.py.
Error is:
error: 2020-09-07T13:11:23.165Z - error: [gme:bin:coremq_server:CoreZMQ] res { err: { message: 'Cannot read property \'setSuccess\' of undefined', type: 'TypeError', stack: 'TypeError: Cannot read property \'setSuccess\' of undefined\n req: { name: 'resultSetSuccess', args: [Array], type: 'plugin' } }, res: null }
Steps to recreate:
Create a new python plugin and add the following lines at the end:
eg:
The text was updated successfully, but these errors were encountered: