fixup! fix: make verify permission error

Signed-off-by: Mateus Oliveira <msouzaol@redhat.com>
This commit is contained in:
Mateus Oliveira
2023-10-25 08:12:41 -03:00
parent cbf849ab4c
commit 3bc23aeb84
3 changed files with 13 additions and 2 deletions
@@ -784,6 +784,11 @@ func (in *ExecRestoreHook) DeepCopyInto(out *ExecRestoreHook) {
}
out.ExecTimeout = in.ExecTimeout
out.WaitTimeout = in.WaitTimeout
if in.WaitForReady != nil {
in, out := &in.WaitForReady, &out.WaitForReady
*out = new(bool)
**out = **in
}
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecRestoreHook.