From e93b833bc2495a20b5146c970b7b1032e334f99d Mon Sep 17 00:00:00 2001 From: Philip Moulton Date: Wed, 1 Oct 2025 21:02:49 +0000 Subject: [PATCH] Convert `log_info` dict to string for logging --- snakemake_executor_plugin_aws_batch/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakemake_executor_plugin_aws_batch/__init__.py b/snakemake_executor_plugin_aws_batch/__init__.py index 783a2ba..e3b5e07 100644 --- a/snakemake_executor_plugin_aws_batch/__init__.py +++ b/snakemake_executor_plugin_aws_batch/__init__.py @@ -228,7 +228,7 @@ def _get_job_status(self, job: SubmittedJobInfo) -> tuple[int, Optional[str]]: "job_id": job.external_jobid, "status": job_status, } - self.logger.debug(log_info) + self.logger.debug(str(log_info)) return None, None except Exception as e: self.logger.error(f"Error getting job status: {e}")