From 042f9e97ac3543b35a29b65a18319ba3fb0fae6a Mon Sep 17 00:00:00 2001 From: swayne275 Date: Tue, 26 Oct 2021 15:17:20 -0600 Subject: [PATCH] oss LastDRWAL (#12931) --- vault/core.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vault/core.go b/vault/core.go index 8594f7cc49..3b9242498d 100644 --- a/vault/core.go +++ b/vault/core.go @@ -108,6 +108,7 @@ var ( stopReplication = stopReplicationImpl LastWAL = lastWALImpl LastPerformanceWAL = lastPerformanceWALImpl + LastDRWAL = lastDRWALImpl PerformanceMerkleRoot = merkleRootImpl DRMerkleRoot = merkleRootImpl LastRemoteWAL = lastRemoteWALImpl @@ -2304,6 +2305,10 @@ func lastPerformanceWALImpl(c *Core) uint64 { return 0 } +func lastDRWALImpl(c *Core) uint64 { + return 0 +} + func lastRemoteWALImpl(c *Core) uint64 { return 0 }