From cd750d6637886a2518aa4d80766d857d96fc5569 Mon Sep 17 00:00:00 2001 From: Travis Smith <141754521+tsm1th@users.noreply.github.com> Date: Wed, 23 Oct 2024 07:08:07 -0500 Subject: [PATCH 1/2] Removing erroneous print statement --- nautobot_ssot/jobs/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nautobot_ssot/jobs/base.py b/nautobot_ssot/jobs/base.py index 972f8952..a2d775cf 100644 --- a/nautobot_ssot/jobs/base.py +++ b/nautobot_ssot/jobs/base.py @@ -193,7 +193,6 @@ def record_memory_trace(step: str): self.logger.info("As `dryrun` is set, skipping the actual data sync.") else: self.logger.info("Syncing from %s to %s...", self.source_adapter, self.target_adapter) - print("I'm executing the sync now") self.execute_sync() execute_sync_time = datetime.now() self.sync.sync_time = execute_sync_time - calculate_diff_time From 6a2f446a50410279490f3b36d30881b167d32056 Mon Sep 17 00:00:00 2001 From: Travis Smith <141754521+tsm1th@users.noreply.github.com> Date: Wed, 23 Oct 2024 08:07:56 -0500 Subject: [PATCH 2/2] Created change log fragment 582.fixed --- changes/582.fixed | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/582.fixed diff --git a/changes/582.fixed b/changes/582.fixed new file mode 100644 index 00000000..11657b0c --- /dev/null +++ b/changes/582.fixed @@ -0,0 +1 @@ +Fixed erroneous print statement in sync logs.