mirror of
https://github.com/restic/restic.git
synced 2024-12-23 08:16:36 +00:00
backend/mem: cleanup not found error message
This commit is contained in:
parent
7ba5e95a82
commit
35277b7797
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
|
"fmt"
|
||||||
"hash"
|
"hash"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -41,7 +42,7 @@ func NewFactory() location.Factory {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
var errNotFound = errors.New("not found")
|
var errNotFound = fmt.Errorf("not found")
|
||||||
|
|
||||||
const connectionCount = 2
|
const connectionCount = 2
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue