Fix bug with add_dict function in amateur uploader

pull/7/head
Mark Jessop 2022-09-10 10:16:52 +09:30
rodzic 3fb498d7a4
commit 4660113e75
2 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ import queue
import gzip
__version__ = "0.3.0"
__version__ = "0.3.1"
S3_BUCKET = "sondehub-history"

Wyświetl plik

@ -350,9 +350,6 @@ class Uploader(object):
telemetry (dict): Telemetry dictionary to add to the input queue.
"""
if self.inhibit:
return
# Add it to the queue if we are running.
if self.input_processing_running:
self.input_queue.put(telemetry)