From d8058c38dd46b610261de63b8f2e72b8a1b10240 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Tue, 1 Sep 2015 05:17:35 -0400 Subject: [PATCH] Remove /containers/ps from the api router. This route was deprecated more than two years ago in the linked commit[1]. It's not referenced anywhere in the documentation and it's time to stop maintaning it. [1]: https://github.com/docker/docker/commit/4f9443927e8bc8a724b43afae6cf7a183cd9acd0 Signed-off-by: David Calavera Upstream-commit: b5cc077864665290456c5ec724427c1f0d7bc96b Component: engine --- components/engine/api/server/server.go | 1 - 1 file changed, 1 deletion(-) diff --git a/components/engine/api/server/server.go b/components/engine/api/server/server.go index ec2f00cbf2..1ab504da57 100644 --- a/components/engine/api/server/server.go +++ b/components/engine/api/server/server.go @@ -317,7 +317,6 @@ func createRouter(s *Server) *mux.Router { "/images/{name:.*}/get": s.getImagesGet, "/images/{name:.*}/history": s.getImagesHistory, "/images/{name:.*}/json": s.getImagesByName, - "/containers/ps": s.getContainersJSON, "/containers/json": s.getContainersJSON, "/containers/{name:.*}/export": s.getContainersExport, "/containers/{name:.*}/changes": s.getContainersChanges,