mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			399 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			399 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go: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)
 | 
						|
}
 |