From 0ef7fe6795b4a838c238d9b4894cad9cdd0ccf48 Mon Sep 17 00:00:00 2001 From: ali ugur Date: Mon, 30 Sep 2024 12:47:46 +0300 Subject: [PATCH] chore(): Remove unnecessary debug lines --- src/github_runner_manager/reactive/consumer.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/github_runner_manager/reactive/consumer.py b/src/github_runner_manager/reactive/consumer.py index 3b6d908..d0f069b 100644 --- a/src/github_runner_manager/reactive/consumer.py +++ b/src/github_runner_manager/reactive/consumer.py @@ -182,10 +182,6 @@ def _check_job_been_picked_up(job_url: HttpUrl, github_client: GithubClient) -> # "https://api.github.com/repos/cbartz/gh-runner-test/actions/jobs/22428484402" path = job_url.path # we know that path is not empty as it is validated by the JobDetails model - logging.debug( - "----------- job_url path %s", path - ) - job_url_path_parts = path.split("/") # type: ignore job_id = job_url_path_parts[-1] owner = job_url_path_parts[2]