From dd11c1385fc3984267b04fbdcd9b4245e1d9926d Mon Sep 17 00:00:00 2001 From: Paulo Vital Date: Tue, 31 Oct 2023 18:05:40 +0100 Subject: [PATCH] chore(typo): Fixing typos on collector.base.py Signed-off-by: Paulo Vital --- instana/collector/base.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/instana/collector/base.py b/instana/collector/base.py index af12317d8..ba2c73c3f 100644 --- a/instana/collector/base.py +++ b/instana/collector/base.py @@ -35,7 +35,7 @@ def __init__(self, agent): if env_is_test: # Override span queue with a multiprocessing version # The test suite runs background applications - some in background threads, - # others in background processes. This multiprocess queue allows us to collect + # others in background processes. This multiprocessing queue allows us to collect # up spans from all sources. import multiprocessing self.span_queue = multiprocessing.Queue() @@ -59,8 +59,8 @@ def __init__(self, agent): # List of helpers that help out in data collection self.helpers = [] - # Lock used syncronize reporting - no updates when sending - # Used by the background reporting thread. Used to syncronize report attempts and so + # Lock used synchronize reporting - no updates when sending + # Used by the background reporting thread. Used to synchronize report attempts and so # that we never have two in progress at once. self.background_report_lock = threading.Lock() @@ -70,7 +70,7 @@ def __init__(self, agent): # Flag to indicate if start/shutdown state self.started = False - # Startime of fetching metadata + # Start time of fetching metadata self.fetching_start_time = 0 def is_reporting_thread_running(self): @@ -95,7 +95,7 @@ def start(self): timer.name = "Collector Timed Start" timer.start() return - logger.debug("Collecter.start non-fatal: call but thread already running (started: %s)", self.started) + logger.debug("BaseCollector.start non-fatal: call but thread already running (started: %s)", self.started) return if self.agent.can_send():