Fix runner/pools.go typo

Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
This commit is contained in:
Mihaela Balutoiu 2023-06-15 14:11:49 +03:00
parent 05168ac994
commit 7ac2455379

View file

@ -67,7 +67,7 @@ func (r *Runner) DeletePoolByID(ctx context.Context, poolID string) error {
}
if err := r.store.DeletePoolByID(ctx, poolID); err != nil {
return errors.Wrap(err, "fetching pool")
return errors.Wrap(err, "deleting pool")
}
return nil
}