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
|
package tsdbutil
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/go-kit/log"
|
"github.com/go-kit/log"
|
||||||
"github.com/go-kit/log/level"
|
"github.com/go-kit/log/level"
|
||||||
"github.com/pkg/errors"
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
|
||||||
tsdb_errors "github.com/prometheus/prometheus/tsdb/errors"
|
tsdb_errors "github.com/prometheus/prometheus/tsdb/errors"
|
||||||
|
@ -83,7 +83,7 @@ func (l *DirLocker) Lock() error {
|
||||||
|
|
||||||
lockf, _, err := fileutil.Flock(l.path)
|
lockf, _, err := fileutil.Flock(l.path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.Wrap(err, "lock DB directory")
|
return fmt.Errorf("lock DB directory: %w", err)
|
||||||
}
|
}
|
||||||
l.releaser = lockf
|
l.releaser = lockf
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue