From a0103acbef0ed54d2b994ae4214b61a085097edb Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Wed, 10 Aug 2022 15:25:36 -0400 Subject: [PATCH] Inherit from our own APIView, not rest framework --- awx/api/views/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/views/debug.py b/awx/api/views/debug.py index 13dfc4a604..8ccdd6afe8 100644 --- a/awx/api/views/debug.py +++ b/awx/api/views/debug.py @@ -4,7 +4,7 @@ from django.conf import settings from rest_framework.permissions import AllowAny from rest_framework.response import Response -from rest_framework.views import APIView +from awx.api.generics import APIView from awx.main.scheduler import TaskManager, DependencyManager, WorkflowManager