Running this one more time
20200-log-limit @ 51b11d12c688dd9fae37f527d4c1ddf1e1a186f6
developer-run-tests: #3538 
The sdk/go/keepclient test is passing when I run it locally, but seeing this error on Jenkins:
15:27:59 FAIL: keepclient_test.go:1087: ServerRequiredSuite.TestPutGetHead
15:27:59
15:27:59 keepclient_test.go:1099:
15:27:59 c.Check(err, Equals, BlockNotFound)
15:27:59 ... obtained *keepclient.ErrNotFound = &keepclient.ErrNotFound{multipleResponseError:keepclient.multipleResponseError{error:(*errors.errorString)(0xc0014aafd0), isTemp:false}} ("HEAD a8383a37e70cc4c384694c32c3face5f failed: [http://localhost:33893/a8383a37e70cc4c384694c32c3face5f: HTTP 404 \"\" http://localhost:36625/a8383a37e70cc4c384694c32c3face5f: HTTP 405 \"\"]")
15:27:59 ... expected *keepclient.ErrNotFound = &keepclient.ErrNotFound{multipleResponseError:keepclient.multipleResponseError{error:(*errors.errorString)(0xc00020c5d0), isTemp:false}} ("Block not found")
15:27:59 ... Difference:
15:27:59 ... multipleResponseError.error.s: "HEAD a8383a37e70cc4c384694c32c3face5f failed: [http://localhost:33893/a8383a37e70cc4c384694c32c3face5f: HTTP 404 \"\" http://localhost:36625/a8383a37e70cc4c384694c32c3face5f: HTTP 405 \"\"]" != "Block not found"
This is weird because 405 is HTTP method not allowed. I'm wondering if it is accidentally talking to the service from RunFakeKeepServer (which returns StatusMethodNotAllowed for HEAD) and not the real keepstore. However, the keep0 logs show a "HEAD a8383a37e70cc4c384694c32c3face5f" request returning 404, but that could be from something else.