We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788612d commit b96dd65Copy full SHA for b96dd65
hsds/headnode.py
@@ -289,8 +289,8 @@ async def register(request):
289
# all the slots are filled, see if there is any unhealthy node
290
# and remove that
291
for i in range(len(active_list)):
292
- node_id = active_list[i]
293
- node = nodes[node_id]
+ id = active_list[i]
+ node = nodes[id]
294
if not node.is_healthy():
295
active_list[i] = None # clear the slot
296
break
0 commit comments