Avoid compatibility test during service deployment (#236)

This commit is contained in:
Marc Greisen 2021-08-26 10:39:37 -07:00 коммит произвёл GitHub
Родитель 78968164e5
Коммит 295aa49643
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -135,7 +135,13 @@ def run(args):
defaults,
defaults_path,
args.get('secret'))
compatability_test(service_cli)
# If we try to run the compatibility test before deployment
# it will fail because we don't have a clientId and tenantId
# It does no harm to avoid the compatibility test for
# all service actions.
if not service_action:
compatability_test(service_cli)
if service_action:
if service_action == 'restart':