@@ -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