From c90dda0061fbc8eeeb2f46dfef9eb8a36acd7673 Mon Sep 17 00:00:00 2001 From: jyejare Date: Thu, 13 Jun 2024 12:27:04 +0530 Subject: [PATCH] Git checks fixes --- conf/server.yaml.template | 4 ++-- robottelo/config/validators.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/server.yaml.template b/conf/server.yaml.template index 4d905f45e8e..e196dd9413d 100644 --- a/conf/server.yaml.template +++ b/conf/server.yaml.template @@ -14,9 +14,9 @@ SERVER: # The RHEL Base OS Version(x.y) where the Satellite is installed RHEL_VERSION: '7' # If the the satellite server is IPv6 server - # IS_IPV6: + IS_IPV6: False # HTTP Proxy url for IPv6 satellite to connect for outer world access - # HTTP_PROXY_IPv6_URL: + HTTP_PROXY_IPv6_URL: # run-on-one - All xdist runners default to the first satellite # balance - xdist runners will be split between available satellites # on-demand - any xdist runner without a satellite will have a new one provisioned. diff --git a/robottelo/config/validators.py b/robottelo/config/validators.py index 6ba7c769b7c..1c37d63404f 100644 --- a/robottelo/config/validators.py +++ b/robottelo/config/validators.py @@ -36,7 +36,7 @@ Validator('server.ssh_password', default=None), Validator('server.verify_ca', default=False), Validator('server.is_ipv6', is_type_of=bool, default=False), - Validator('server.http_proxy_ipv6_url', is_type_of=str), + Validator('server.http_proxy_ipv6_url', is_type_of=str, default=None), ], content_host=[ Validator('content_host.default_rhel_version', must_exist=True),