Merge pull request #13143 from mmorel-35/patch-3
tsdb/tsdbutil: use Go standard errors
This commit is contained in:
commit
1b84c01b76
|
@ -14,13 +14,13 @@
|
|||
package tsdbutil
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/go-kit/log"
|
||||
"github.com/go-kit/log/level"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/prometheus/client_golang/prometheus"
|
||||
|
||||
tsdb_errors "github.com/prometheus/prometheus/tsdb/errors"
|
||||
|
@ -83,7 +83,7 @@ func (l *DirLocker) Lock() error {
|
|||
|
||||
lockf, _, err := fileutil.Flock(l.path)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "lock DB directory")
|
||||
return fmt.Errorf("lock DB directory: %w", err)
|
||||
}
|
||||
l.releaser = lockf
|
||||
return nil
|
||||
|
|
Loading…
Reference in New Issue