From 40b7a759649824d599f8758e639f450b0675c84d Mon Sep 17 00:00:00 2001 From: omkarkhatavkar Date: Tue, 4 Jun 2024 17:29:59 +0530 Subject: [PATCH] removed server.hostname validator for resolve rhel 8.10 formatting issue --- robottelo/config/validators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robottelo/config/validators.py b/robottelo/config/validators.py index 8f6505db48d..cb484b9cbee 100644 --- a/robottelo/config/validators.py +++ b/robottelo/config/validators.py @@ -10,7 +10,7 @@ ), ], server=[ - Validator('server.hostname', default=''), + Validator('server.hostname', must_exist=True), Validator('server.hostnames', must_exist=True, is_type_of=list), Validator('server.version.release', must_exist=True), Validator('server.version.source', must_exist=True),