From 2483673ab099e2f3f8c4243a83e483e2ab81acc3 Mon Sep 17 00:00:00 2001 From: James Laska Date: Sun, 7 Jun 2015 09:01:59 -0400 Subject: [PATCH] Return 204 NO_CONTENT on /config DELETE --- awx/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views.py b/awx/api/views.py index d3d6e7f3cf..48c3a6e66f 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -272,7 +272,7 @@ class ApiV1ConfigView(APIView): mongodb_control.delay('stop') except OSError: pass - return Response() + return Response(status=status.HTTP_204_NO_CONTENT) class DashboardView(APIView):