diff --git a/awx/api/views/instance_install_bundle.py b/awx/api/views/instance_install_bundle.py index d85240cea080..455da25ddfaa 100644 --- a/awx/api/views/instance_install_bundle.py +++ b/awx/api/views/instance_install_bundle.py @@ -47,7 +47,6 @@ class InstanceInstallBundle(GenericAPIView): def get(self, request, *args, **kwargs): instance_obj = self.get_object() - # if the instance is not a hop or execution node than return 400 if instance_obj.node_type not in ('execution',): return Response( data=dict(msg=_('Install bundle can only be generated for execution nodes.')),