fn: test scripts should use well defined ports (#1077)

* fn: test scripts should use well defined ports

Moved allocation of listener ports for mysql/minio/postgres
to helper script with a list of service list names.

* fn: makefile docker pull mysql version must match tests
This commit is contained in:
Tolga Ceylan
2018-06-20 10:55:05 -07:00
committed by GitHub
parent 3fd6b6c1d8
commit bd7f67a74a
6 changed files with 103 additions and 89 deletions

View File

@@ -26,7 +26,7 @@ var providers []Provider
// AddProvider globally registers a new LogStore provider
func AddProvider(pf Provider) {
logrus.Info("Adding log provider %s", pf)
logrus.Infof("Adding log provider %s", pf)
providers = append(providers, pf)
}