Skip to content

Commit ad09d9c

Browse files
authored
Ignore lint error and fix session video uri call
1 parent f049747 commit ad09d9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cdp_backend/pipeline/event_gather_pipeline.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def get_session_content_hash(
311311

312312

313313
@task(nout=3)
314-
def convert_video_and_handle_host(
314+
def convert_video_and_handle_host( # noqa: C901
315315
video_filepath: str,
316316
session: Session,
317317
credentials_file: str,
@@ -410,9 +410,9 @@ def convert_video_and_handle_host(
410410
cdp_will_host = True
411411

412412
# Try with www
413-
elif not resource_exists(session.video_url):
413+
elif not resource_exists(session.video_uri):
414414
log.info("Handling www URL problems")
415-
www_url = session.video_url.replace("://", "://www.")
415+
www_url = session.video_uri.replace("://", "://www.")
416416
if resource_exists(www_url):
417417
hosted_video_media_url = www_url
418418

0 commit comments

Comments
 (0)