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

Raise logging level for PV deletion timeout #3316

Merged
merged 2 commits into from
Jan 22, 2021
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 changelogs/unreleased/3316-MadhavJivrajani
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change the logging level of PV deletion timeout from Debug to Warn
2 changes: 1 addition & 1 deletion pkg/restore/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ func (ctx *restoreContext) shouldRestore(name string, pvClient client.Dynamic) (
})

if err == wait.ErrWaitTimeout {
pvLogger.Debug("timeout reached waiting for persistent volume to delete")
pvLogger.Warn("timeout reached waiting for persistent volume to delete")
}

return shouldRestore, err
Expand Down