From 088645adbd98831ef84a6d33cc46ab311b7cde68 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:03:40 -0500 Subject: [PATCH] [6.13.z] fixing the incorrect recording video url (#13721) fixing the incorrect recording video url (#13714) fixing the recording video url (cherry picked from commit de84bd3e1d30074534ac42c7e66718ec73e19929) Co-authored-by: Omkar Khatavkar --- robottelo/hosts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/robottelo/hosts.py b/robottelo/hosts.py index 9fee7352bb2..7f4e75ebce4 100644 --- a/robottelo/hosts.py +++ b/robottelo/hosts.py @@ -1830,7 +1830,7 @@ def get_caller(): raise finally: video_url = settings.ui.grid_url.replace( - ':4444', f'/videos/{ui_session.ui_session_id}.mp4' + ':4444', f'/videos/{ui_session.ui_session_id}/video.mp4' ) if self.record_property is not None and settings.ui.record_video: self.record_property('video_url', video_url)