release-0.4
Xiang Li 2013-07-12 08:56:10 -07:00
parent 33872501cf
commit 00d2d6eb4e
2 changed files with 6 additions and 6 deletions

View File

@ -102,7 +102,7 @@ func (t transporter) GetLeaderClientAddress() string {
// Send server side POST request
func (t transporter) Post(path string, body io.Reader) (*http.Response, error) {
resp, err := t.client.Post(t.scheme + path, "application/json", body)
resp, err := t.client.Post(t.scheme+path, "application/json", body)
return resp, err
}