Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing erroneous print statement #581

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/582.fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed erroneous print statement in sync logs.
1 change: 0 additions & 1 deletion nautobot_ssot/jobs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down