// And then reverse check: any config entries for which we have no state?
// If we do, need to initialize state
int i = 0;
for (NodeDefinition def : orphanDefs.values()) {
ActiveNodeState state = new ActiveNodeState(def, _startTime);
state = state.withSyncRange(localState);
if (!_stuff.isRunningTests()) {
LOG.warn("Configuration entry without state, key {}: will need to (re)create state (sync range {})",
def.getAddress(), state.getRangeSync());
}
try {