From 3dd3862426ec82819a521c460d5e94be59f32a27 Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Sun, 28 Dec 2025 16:35:22 -0600 Subject: [PATCH] Changed function name from is_vault_unsealed to is_vault_sealed to better reflect how it works but forgot to change an invocation --- setup-scripts/prod-setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-scripts/prod-setup.py b/setup-scripts/prod-setup.py index 63e93a1..26a9d1b 100644 --- a/setup-scripts/prod-setup.py +++ b/setup-scripts/prod-setup.py @@ -126,7 +126,7 @@ class Initializer: print(unseal_output) # If the vault is now unsealed break/escape from the loop - if not self.is_vault_unsealed(): + if not self.is_vault_sealed(): print('Vault is unsealed') break