Update to get dev-server working again after jsonsign & Go changes.

This commit is contained in:
Brad Fitzpatrick 2011-05-21 08:51:49 -07:00
parent 56793275cc
commit 0e9921e6f3
2 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,6 @@
"/sighelper/": {
"handler": "jsonsign",
"handlerArgs": {
"keyRing": ["_env", "${CAMLI_KEY_RING}"],
"secretRing": ["_env", "${CAMLI_SECRET_RING}"],
"keyId": "26F5ABDA"
}

View File

@ -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}
}