Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport of Add stub for stopping partial wrap monitoring to CE into release/1.15.x #24421

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vault/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -2308,6 +2308,7 @@ func (c *Core) sealInternalWithOptions(grabStateLock, keepHALock, performCleanup
c.logger.Debug("runStandby done")
}

stopPartialSealRewrapping(c)
c.teardownReplicationResolverHandler()

// Perform additional cleanup upon sealing.
Expand Down
4 changes: 4 additions & 0 deletions vault/seal_stubs_oss.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ func startPartialSealRewrapping(c *Core) {
// nothing to do
}

func stopPartialSealRewrapping(c *Core) {
// nothing to do
}

func GetPartiallySealWrappedPaths(ctx context.Context, backend physical.Backend) ([]string, error) {
return nil, nil
}
Loading