mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00
pkg: switch to golang native error wrapping
We now use the golang error wrapping format specifier `%w` instead of the deprecated github.com/pkg/errors package. [NO NEW TESTS NEEDED] Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
This commit is contained in:
@ -2,9 +2,10 @@ package parallel
|
||||
|
||||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"sync"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"github.com/sirupsen/logrus"
|
||||
"golang.org/x/sync/semaphore"
|
||||
)
|
||||
@ -59,7 +60,7 @@ func Enqueue(ctx context.Context, fn func() error) <-chan error {
|
||||
defer close(retChan)
|
||||
|
||||
if err := jobControl.Acquire(ctx, 1); err != nil {
|
||||
retChan <- errors.Wrapf(err, "error acquiring job control semaphore")
|
||||
retChan <- fmt.Errorf("error acquiring job control semaphore: %w", err)
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user