Remove license_key check & fix docker-compose make command

This commit is contained in:
Christian M. Adams 2020-10-22 16:49:13 -04:00 committed by Ryan Petrello
parent 0ddf47740c
commit 67000f0ce9
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777
2 changed files with 1 additions and 2 deletions

View File

@ -650,7 +650,7 @@ awx/projects:
docker-compose-isolated: awx/projects
CURRENT_UID=$(shell id -u) TAG=$(COMPOSE_TAG) DEV_DOCKER_TAG_BASE=$(DEV_DOCKER_TAG_BASE) docker-compose -f tools/docker-compose.yml -f tools/docker-isolated-override.yml up
COMPOSE_UP_OPTS ?= ""
COMPOSE_UP_OPTS ?=
# Docker Compose Development environment
docker-compose: docker-auth awx/projects

View File

@ -14,7 +14,6 @@ class Config(base.Base):
@property
def is_valid_license(self):
return self.license_info.get('valid_key', False) and \
'license_key' in self.license_info and \
'instance_count' in self.license_info
@property