2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-01-10 18:12:30 +00:00

Start index at 1 instead of 0

This commit is contained in:
Jarrod Johnson
2025-11-17 12:05:03 -05:00
parent 53760ab5dd
commit 61b07e0af4

View File

@@ -2602,7 +2602,7 @@ class ConfigManager(object):
else:
nidx = get_global('max_node_index')
if nidx is None:
nidx = 0
nidx = 1
set_global('max_node_index', nidx + 1)
self._cfgstore['nodes'][node] = {'id.index': {'value': nidx}}
cfgobj = self._cfgstore['nodes'][node]
@@ -3241,7 +3241,7 @@ def _init_indexes():
maxidx = get_global('max_node_index')
if maxidx is not None:
return
maxidx = 0
maxidx = 1
maincfgstore = _cfgstore['main']
nodes_without_index = []
for node in confluent.util.natural_sort(maincfgstore.get('nodes', {})):