mirror of https://github.com/perkeep/perkeep.git
Update to get dev-server working again after jsonsign & Go changes.
This commit is contained in:
parent
56793275cc
commit
0e9921e6f3
|
@ -28,7 +28,6 @@
|
|||
"/sighelper/": {
|
||||
"handler": "jsonsign",
|
||||
"handlerArgs": {
|
||||
"keyRing": ["_env", "${CAMLI_KEY_RING}"],
|
||||
"secretRing": ["_env", "${CAMLI_SECRET_RING}"],
|
||||
"keyId": "26F5ABDA"
|
||||
}
|
||||
|
|
|
@ -53,6 +53,9 @@ func readBlobs(opts readBlobRequest) os.Error {
|
|||
}
|
||||
defer dir.Close()
|
||||
names, err := dir.Readdirnames(32768)
|
||||
if err == os.EOF {
|
||||
return nil
|
||||
}
|
||||
if err != nil {
|
||||
return &enumerateError{"localdisk: readdirnames of " + dirFullPath, err}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue