From 4660113e759d0bea69d8b481b5e2ecbbc4df3338 Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Sat, 10 Sep 2022 10:16:52 +0930 Subject: [PATCH] Fix bug with add_dict function in amateur uploader --- sondehub/__init__.py | 2 +- sondehub/amateur.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/sondehub/__init__.py b/sondehub/__init__.py index f1aa87a..8f2482e 100644 --- a/sondehub/__init__.py +++ b/sondehub/__init__.py @@ -12,7 +12,7 @@ import queue import gzip -__version__ = "0.3.0" +__version__ = "0.3.1" S3_BUCKET = "sondehub-history" diff --git a/sondehub/amateur.py b/sondehub/amateur.py index 5c2bcc2..be16eb0 100644 --- a/sondehub/amateur.py +++ b/sondehub/amateur.py @@ -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)