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.Directory = "/"
*shellOptions.FilerGroup = ""
emptyFilerGroup := ""
shellOptions.FilerGroup = &emptyFilerGroup
commandEnv := shell.NewCommandEnv(&shellOptions)