From 20ffc6729af6d979aa5a3a0ee10cda00ebb1afb4 Mon Sep 17 00:00:00 2001 From: Vault Automation Date: Thu, 18 Dec 2025 10:50:01 -0700 Subject: [PATCH] Add OSS stub for core.IsReplicated() (#11456) (#11486) Co-authored-by: Theron Voran --- vault/core_stubs_oss.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vault/core_stubs_oss.go b/vault/core_stubs_oss.go index f923280241..5e8668da08 100644 --- a/vault/core_stubs_oss.go +++ b/vault/core_stubs_oss.go @@ -110,6 +110,10 @@ func (c *Core) GetCurrentWALHeader() string { return "" } +func (c *Core) IsReplicated(secondaryID, namespacePath, mountPathRelative string) bool { + return false +} + func (c *Core) SecretsSyncLicensedActivated() bool { return false } func (c *Core) IsMultisealEnabled() bool { return false }