Skip to content

Commit

Permalink
MQTT Client Identifier without slash and underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
yozik04 committed May 21, 2021
1 parent 7d53cc6 commit 2e10ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paradox/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '2.5.2'
VERSION = '2.5.3'
2 changes: 1 addition & 1 deletion paradox/interfaces/mqtt/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_instance(cls) -> "MQTTConnection":

def __init__(self):
super(MQTTConnection, self).__init__(
"paradox_mqtt/{}".format(os.urandom(8).hex())
"pai{}".format(os.urandom(8).hex())
)
self._last_run_state = "unknown"
self.run_status_topic = "{}/{}/{}".format(
Expand Down

0 comments on commit 2e10ec9

Please sign in to comment.