Calling GetConnections when using multiple threads triggers the assertion in line 207 of vp_manager.cpp. The following script reproduces the issue: ```python import nest nest.total_num_virtual_procs = 2 neuron = nest.Create("parrot_neuron") nest.Connect(neuron, neuron) nest.GetConnections() ```