Skip to content
This repository was archived by the owner on Sep 7, 2019. It is now read-only.

Commit b570dca

Browse files
committed
Fix spelling of Length
1 parent 0362150 commit b570dca

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

celery_prometheus_exporter.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def enable_events(self):
209209
self._app.control.enable_events()
210210

211211

212-
class QueueLenghtMonitoringThread(threading.Thread):
212+
class QueueLengthMonitoringThread(threading.Thread):
213213
periodicity_seconds = 30
214214

215215
def __init__(self, app, queue_list):
@@ -221,7 +221,7 @@ def __init__(self, app, queue_list):
221221
if isinstance(self.connection, FallbackContext):
222222
self.connection = self.connection.fallback()
223223

224-
super(QueueLenghtMonitoringThread, self).__init__()
224+
super(QueueLengthMonitoringThread, self).__init__()
225225

226226
def measure_queues_length(self):
227227
for queue in self.queue_list:
@@ -361,7 +361,7 @@ def main(): # pragma: no cover
361361
else:
362362
queue_list = opts.queue_list
363363

364-
q = QueueLenghtMonitoringThread(app=app, queue_list=queue_list)
364+
q = QueueLengthMonitoringThread(app=app, queue_list=queue_list)
365365

366366
q.daemon = True
367367
q.start()

test/test_unit.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
WorkerMonitoringThread, setup_metrics, MonitorThread, EnableEventsThread,
1919
TASKS,
2020
get_histogram_buckets_from_evn,
21-
QueueLenghtMonitoringThread, QUEUE_LENGTH)
21+
QueueLengthMonitoringThread, QUEUE_LENGTH)
2222

2323
from celery_test_utils import get_celery_app, SampleTask
2424

@@ -131,7 +131,7 @@ def test_can_measure_queue_length(self):
131131
celery_app = get_celery_app(queue='realqueue')
132132
sample_task = SampleTask()
133133
sample_task.app = celery_app
134-
monitoring_thread_instance = QueueLenghtMonitoringThread(celery_app, queue_list=['realqueue'])
134+
monitoring_thread_instance = QueueLengthMonitoringThread(celery_app, queue_list=['realqueue'])
135135

136136
sample_task.delay()
137137
monitoring_thread_instance.measure_queues_length()
@@ -140,7 +140,7 @@ def test_can_measure_queue_length(self):
140140
self.assertEqual(1.0, sample)
141141

142142
def test_set_zero_on_queue_length_when_an_channel_layer_error_occurs_during_queue_read(self):
143-
instance = QueueLenghtMonitoringThread(app=self.app, queue_list=['noqueue'])
143+
instance = QueueLengthMonitoringThread(app=self.app, queue_list=['noqueue'])
144144

145145
instance.measure_queues_length()
146146
sample = REGISTRY.get_sample_value('celery_queue_length', {'queue_name':'noqueue'})

0 commit comments

Comments
 (0)