Skip to content

Commit e7d8062

Browse files
committed
Bump version to 0.9.9.25; update pyproject.toml and add adbc-driver-manager dependency for io and io-legacy extras
1 parent 9755c0c commit e7d8062

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A simple workflow framework. Hamilton + APScheduler = FlowerPower
44
authors = [{ name = "Volker L.", email = "[email protected]" }]
55
readme = "README.md"
66
requires-python = ">= 3.11"
7-
version = "0.9.9.24"
7+
version = "0.9.9.25"
88
keywords = ["hamilton", "workflow", "pipeline", "scheduler", "apscheduler", "dask", "ray"]
99
dependencies = [
1010
'aiobotocore<2.18.0',

src/flowerpower/mqtt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ def reconnect(self):
150150
def publish(self, topic, payload):
151151
if self._client is None:
152152
self.connect()
153-
elif self._client.is_connected() is False:
154-
self.reconnect()
153+
# elif self._client.is_connected() is False:
154+
# self.reconnect()
155155
self._client.publish(topic, payload)
156156

157157
def subscribe(self, topic: str | None = None):

0 commit comments

Comments
 (0)