зеркало из https://github.com/microsoft/Burrow.git
Merge pull request #69 from jsvisa/fix/make-map-when-is-nil
FIX: make map when is nil
This commit is contained in:
Коммит
ba73de4b6a
|
@ -176,6 +176,9 @@ func ValidateConfig(app *ApplicationContext) error {
|
|||
|
||||
// Kafka Client Profiles
|
||||
// Set up a default profile, if needed
|
||||
if app.Config.Clientprofile == nil {
|
||||
app.Config.Clientprofile = make(map[string]*ClientProfile)
|
||||
}
|
||||
if _, ok := app.Config.Clientprofile["default"]; !ok {
|
||||
app.Config.Clientprofile["default"] = &ClientProfile {
|
||||
ClientID: app.Config.General.ClientID,
|
||||
|
|
Загрузка…
Ссылка в новой задаче