Empty string test can be improved CRT-A0004
Anti-pattern
Major
1 occurrence in this check
replace len(cfgData) == 0 with cfgData == ""
164	if err != nil {
165		return err
166	}
167	if len(cfgData) == 0 {168		return nil
169	}
170	newCfg := &evictLeaderSchedulerConfig{}