Delete datachange_callbacks only on copy of dict to delete them from
Deleting a node on which any client holds a datachange-notification subscription, NodeManagementService._delete_node_callbacks fails because the size of the dictionary it loops over changes. Here, we solve this by not using the .items() iterator, but making a copy in form of a list first ….
Showing
Please register or sign in to comment