diff --git a/src/firefly/run_browser/widgets.py b/src/firefly/run_browser/widgets.py index ffbc0e93..2fcf74ba 100644 --- a/src/firefly/run_browser/widgets.py +++ b/src/firefly/run_browser/widgets.py @@ -101,7 +101,6 @@ def plot_runs(self, runs: Mapping, xsignal: str): ysignals = [] for run in runs.values(): ysignals.extend(run.columns) - print(xsignal, ysignals) # Remove the x-signal from the list of y signals ysignals = sorted(list(dict.fromkeys(ysignals))) # Plot the runs diff --git a/src/queueserver/tiled_consumer.py b/src/queueserver/tiled_consumer.py index 741c8b8f..ea31b00f 100755 --- a/src/queueserver/tiled_consumer.py +++ b/src/queueserver/tiled_consumer.py @@ -94,7 +94,7 @@ def process_document(self, topic: str, name: str, doc: Mapping) -> bool: def main(): - """Launch the mongo consumer.""" + """Launch the tiled consumer.""" logging.basicConfig(level=logging.WARNING) config = haven.load_config() bootstrap_servers = ["localhost:9092"] @@ -108,7 +108,7 @@ def main(): client = from_uri(tiled_uri, api_key=tiled_api_key) client.include_data_sources() - # Create a MongoConsumer that will listen for new documents. + # Create a Tiled consumer that will listen for new documents. consumer = TiledConsumer( tiled_client=client, topic_catalog_map=topic_catalog_map,