2020-08-10 12:35:57 +00:00
|
|
|
// +build !enterprise
|
|
|
|
|
|
|
|
package testhelpers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
"github.com/mitchellh/go-testing-interface"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WaitForActiveNodeAndStandbys does nothing more than wait for the active node
|
|
|
|
// on OSS. On enterprise it waits for perf standbys to be healthy too.
|
2021-02-18 20:40:18 +00:00
|
|
|
func WaitForActiveNodeAndStandbys(t testing.T, cluster *vault.TestCluster) {
|
2020-08-10 12:35:57 +00:00
|
|
|
WaitForActiveNode(t, cluster)
|
|
|
|
}
|