-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure that perf standbys can perform seal migrations. (#9690)
- Loading branch information
Showing
5 changed files
with
93 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// +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. | ||
func WaitForActiveNodeAndStandbys(t testing.T, cluster *vault.TestCluster) { | ||
WaitForActiveNode(t, cluster) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.