Skip to content
Snippets Groups Projects
Commit 6d015613 authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Fix GET /nest/multimeter_info

parent 19aeaef9
No related branches found
No related tags found
1 merge request!4Feature/add arbor support
Pipeline #163349 canceled
......@@ -75,7 +75,7 @@ def nest_get_multimeter_info(): # noqa: E501
gids = []
if len(attributes) > 0:
for id in attributes[:,0]:
cur.execute("SELECT id FROM nest_neuron_multimeter WHERE id = %s", (id,))
cur.execute("SELECT neuron_id FROM nest_neuron_multimeter WHERE multimeter_id = %s", (id,))
gids.append([i[0] for i in cur.fetchall()])
mult_info = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment