Disable restarting server after setting a new config (#6521)

Also disable listening to service restart event in tests since
we don't do this anymore.
This commit is contained in:
Anis Elleuch
2018-09-28 20:10:51 +01:00
committed by Harshavardhana
parent 8c29f69b00
commit 83d7ec09c1
3 changed files with 0 additions and 22 deletions

View File

@@ -713,16 +713,6 @@ func TestSetConfigHandler(t *testing.T) {
globalMinioAddr = "127.0.0.1:9000"
initGlobalAdminPeers(mustGetNewEndpointList("http://127.0.0.1:9000/d1"))
var wg sync.WaitGroup
// SetConfigHandler restarts minio setup - need to start a
// signal receiver to receive on globalServiceSignalCh.
wg.Add(1)
go func() {
defer wg.Done()
testServiceSignalReceiver(restartCmd, t)
}()
// Prepare query params for set-config mgmt REST API.
queryVal := url.Values{}
queryVal.Set("config", "")
@@ -782,9 +772,6 @@ func TestSetConfigHandler(t *testing.T) {
t.Errorf("Got unexpected response code or body %d - %s", rec.Code, respBody)
}
}
// Wait until testServiceSignalReceiver finishes its execution
wg.Wait()
}
func TestAdminServerInfo(t *testing.T) {