fix wrong assignment

This commit is contained in:
chrislu
2022-05-03 07:12:33 -07:00
parent 9271866d1e
commit b201edb9df

View File

@@ -272,7 +272,8 @@ func (ms *MasterServer) startAdminScripts() {
shellOptions.Masters = &masterAddress shellOptions.Masters = &masterAddress
shellOptions.Directory = "/" shellOptions.Directory = "/"
*shellOptions.FilerGroup = "" emptyFilerGroup := ""
shellOptions.FilerGroup = &emptyFilerGroup
commandEnv := shell.NewCommandEnv(&shellOptions) commandEnv := shell.NewCommandEnv(&shellOptions)