From 64cbc735fb2362c511797fcf9eda88c82c62245d Mon Sep 17 00:00:00 2001 From: yackob03 Date: Mon, 11 Nov 2013 17:11:21 -0500 Subject: [PATCH] 403s on pulls have to be 404s for now. --- endpoints/index.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/endpoints/index.py b/endpoints/index.py index d6f3ea448..4647d43ff 100644 --- a/endpoints/index.py +++ b/endpoints/index.py @@ -215,7 +215,8 @@ def get_repository_images(namespace, repository): return resp - abort(403) + # TODO Submit a pull to docker CLI to get it to accept 403s + abort(404) @app.route('/v1/repositories//images', methods=['DELETE'])