Merge pull request #109 from mihaelabalutoiu/fix-pools-typo

Fix `runner/pools.go` typo
This commit is contained in:
Gabriel 2023-06-15 15:57:48 +03:00 committed by GitHub
commit e44786f1d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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
}