update deps

This commit is contained in:
Lei Xue
2016-09-12 12:32:14 +08:00
parent 1b7e93e356
commit efa61651e7
142 changed files with 2296 additions and 13191 deletions

View File

@@ -26,7 +26,6 @@ import (
"strings"
systemdActivation "github.com/coreos/go-systemd/activation"
"github.com/docker/docker/utils"
"github.com/docker/go-connections/sockets"
"github.com/golang/glog"
"github.com/gorilla/mux"
@@ -173,7 +172,7 @@ func (s *Server) makeHTTPHandler(handler httputils.APIFunc) http.HandlerFunc {
}
if err := handlerFunc(ctx, w, r, vars); err != nil {
glog.Errorf("Handler for %s %s returned error: %s", r.Method, r.URL.Path, utils.GetErrorMessage(err))
glog.Errorf("Handler for %s %s returned error: %v", r.Method, r.URL.Path, err)
httputils.WriteError(w, err)
}
}