mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-26 13:11:09 +01:00
oss LastDRWAL (#12931)
This commit is contained in:
parent
604cefde62
commit
042f9e97ac
@ -108,6 +108,7 @@ var (
|
|||||||
stopReplication = stopReplicationImpl
|
stopReplication = stopReplicationImpl
|
||||||
LastWAL = lastWALImpl
|
LastWAL = lastWALImpl
|
||||||
LastPerformanceWAL = lastPerformanceWALImpl
|
LastPerformanceWAL = lastPerformanceWALImpl
|
||||||
|
LastDRWAL = lastDRWALImpl
|
||||||
PerformanceMerkleRoot = merkleRootImpl
|
PerformanceMerkleRoot = merkleRootImpl
|
||||||
DRMerkleRoot = merkleRootImpl
|
DRMerkleRoot = merkleRootImpl
|
||||||
LastRemoteWAL = lastRemoteWALImpl
|
LastRemoteWAL = lastRemoteWALImpl
|
||||||
@ -2304,6 +2305,10 @@ func lastPerformanceWALImpl(c *Core) uint64 {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func lastDRWALImpl(c *Core) uint64 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
func lastRemoteWALImpl(c *Core) uint64 {
|
func lastRemoteWALImpl(c *Core) uint64 {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user