Hi!
What OS you are using? Can you provide crash dump?
Best regards,
Victor
What OS you are using? Can you provide crash dump?
Best regards,
Victor
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
<file>C:\FX_CHUB\LOGS\`C:\gen_file_name.cmd`</file>
for node in [o for o in session.getAllObjects() if isinstance(o, objects.Node)]:
print 'Processing ', node.getObjectName()
session.pollNode(node.getObjectId(), NodePollType.CONFIGURATION_NORMAL, None)
md = NXCObjectModificationData(node.getObjectId())
md.setObjectFlags(node.getFlags() | Node.NF_DISABLE_CONF_POLL)
session.modifyObject(md)
for node in [o for o in session.getAllObjects() if isinstance(o, objects.Node)]:
print 'Processing ', node.getObjectName()
md = NXCObjectModificationData(node.getObjectId())
md.setObjectFlags(node.getFlags() & ~Node.NF_DISABLE_CONF_POLL)
session.modifyObject(md)