Skip to content

Commit

Permalink
chore(typo): Fixing typos on collector.base.py
Browse files Browse the repository at this point in the history
Signed-off-by: Paulo Vital <paulo.vital@ibm.com>
  • Loading branch information
pvital committed Nov 8, 2023
1 parent 4e50c63 commit dd11c13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions instana/collector/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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()

Expand All @@ -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):
Expand All @@ -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():
Expand Down

0 comments on commit dd11c13

Please sign in to comment.