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

Fix initial startup of a new confluent

The indexes change failed on a brand new install.
This commit is contained in:
Jarrod Johnson
2025-12-02 14:31:10 -05:00
parent 12d886a4f6
commit c196bf9d55

View File

@@ -3239,7 +3239,7 @@ def get_globals():
def _init_indexes():
maxidx = get_global('max_node_index')
if maxidx is not None:
if maxidx is not None or 'main' not in _cfgstore:
return
maxidx = 1
maincfgstore = _cfgstore['main']