Merge pull request #3665 from vgeta/3450-fix

Fixes Issue #3450
Upstream-commit: 69be8adb6830f8631f7fd35ebed6783963c79b28
Component: engine
This commit is contained in:
Victor Vieux
2014-01-20 11:10:54 -08:00

View File

@ -1082,7 +1082,7 @@ func makeHttpHandler(srv *Server, logging bool, localMethod string, localRoute s
}
if version == 0 || version > APIVERSION {
w.WriteHeader(http.StatusNotFound)
http.Error(w, fmt.Errorf("client and server don't have same version (client : %g, server: %g)", version, APIVERSION).Error(), http.StatusNotFound)
return
}