ci/lava: Remove pointless messages

Signed-off-by: Daniel Stone <daniels@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31602>
This commit is contained in:
Daniel Stone 2024-08-31 11:54:28 +01:00
parent cff886d808
commit 46c8423489
2 changed files with 0 additions and 3 deletions

View file

@ -440,7 +440,6 @@ class LAVAJobSubmitter(PathResolver):
validation_job = LAVAJob(self.proxy, job_definition)
if errors := validation_job.validate():
fatal_err(f"Error in LAVA job definition: {errors}")
print_log("LAVA job definition validated successfully")
return job_definition

View file

@ -23,8 +23,6 @@ def setup_lava_proxy():
)
proxy = xmlrpc.client.ServerProxy(uri_str, allow_none=True, transport=transport)
print_log(f'Proxy for {config["uri"]} created.')
return proxy