Skip to content

Commit dd11c13

Browse files
committed
chore(typo): Fixing typos on collector.base.py
Signed-off-by: Paulo Vital <paulo.vital@ibm.com>
1 parent 4e50c63 commit dd11c13

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

instana/collector/base.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, agent):
3535
if env_is_test:
3636
# Override span queue with a multiprocessing version
3737
# The test suite runs background applications - some in background threads,
38-
# others in background processes. This multiprocess queue allows us to collect
38+
# others in background processes. This multiprocessing queue allows us to collect
3939
# up spans from all sources.
4040
import multiprocessing
4141
self.span_queue = multiprocessing.Queue()
@@ -59,8 +59,8 @@ def __init__(self, agent):
5959
# List of helpers that help out in data collection
6060
self.helpers = []
6161

62-
# Lock used syncronize reporting - no updates when sending
63-
# Used by the background reporting thread. Used to syncronize report attempts and so
62+
# Lock used synchronize reporting - no updates when sending
63+
# Used by the background reporting thread. Used to synchronize report attempts and so
6464
# that we never have two in progress at once.
6565
self.background_report_lock = threading.Lock()
6666

@@ -70,7 +70,7 @@ def __init__(self, agent):
7070
# Flag to indicate if start/shutdown state
7171
self.started = False
7272

73-
# Startime of fetching metadata
73+
# Start time of fetching metadata
7474
self.fetching_start_time = 0
7575

7676
def is_reporting_thread_running(self):
@@ -95,7 +95,7 @@ def start(self):
9595
timer.name = "Collector Timed Start"
9696
timer.start()
9797
return
98-
logger.debug("Collecter.start non-fatal: call but thread already running (started: %s)", self.started)
98+
logger.debug("BaseCollector.start non-fatal: call but thread already running (started: %s)", self.started)
9999
return
100100

101101
if self.agent.can_send():

0 commit comments

Comments
 (0)