Skip to content

Commit

Permalink
Bump version to 0.9.9.5; improve logging messages in MQTTManager for …
Browse files Browse the repository at this point in the history
…clarity
  • Loading branch information
legout committed Feb 17, 2025
1 parent e9bf514 commit 0bf4c3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A simple workflow framework. Hamilton + APScheduler = FlowerPower
authors = [{ name = "Volker L.", email = "[email protected]" }]
readme = "README.md"
requires-python = ">= 3.11"
version = "0.9.9.4"
version = "0.9.9.5"
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "apscheduler", "dask", "ray"]
dependencies = [
'aiobotocore<2.18.0',
Expand Down
4 changes: 2 additions & 2 deletions src/flowerpower/mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def start_pipeline_listener(
inputs = {}

def on_message(client, userdata, msg):
logger.info("Message arrived")
logger.info(f"Received message on topic {topic}")

inputs["payload"] = msg.payload

Expand Down Expand Up @@ -363,7 +363,7 @@ def on_message(client, userdata, msg):
_ = e
logger.exception(e)

logger.warning("processing failed")
logger.warning("Message processing failed")

self.start_listener(on_message=on_message, topic=topic, background=background)

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0bf4c3f

Please sign in to comment.