mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-09 04:41:10 +01:00
Re-enable some tests that were being skipped due to flakiness. Fix flakiness stemming from not waiting until new license was applied. Fix race in AOP code. Co-authored-by: Nick Cabatoff <ncabatoff@hashicorp.com>
13 lines
217 B
Go
13 lines
217 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import "os"
|
|
|
|
func init() {
|
|
if signed := os.Getenv("VAULT_LICENSE_CI"); signed != "" {
|
|
os.Setenv(EnvVaultLicense, signed)
|
|
}
|
|
}
|