Revert change in PrintingKubeClient

Signed-off-by: Stephane Moser <moser.sts@gmail.com>
This commit is contained in:
Stephane Moser
2021-07-15 10:31:59 +01:00
parent 7bfb2a3602
commit 4026190e7b

View File

@@ -47,7 +47,7 @@ func (p *PrintingKubeClient) Create(resources kube.ResourceList) (*kube.Result,
return &kube.Result{Created: resources}, nil
}
func (p *PrintingKubeClient) Wait(resources kube.ResourceList, d time.Duration) error {
func (p *PrintingKubeClient) Wait(resources kube.ResourceList, _ time.Duration) error {
_, err := io.Copy(p.Out, bufferize(resources))
return err
}