Skip to content

Commit

Permalink
0.8.6
Browse files Browse the repository at this point in the history
- Changed default clean_session option added in 0.8.5 to be true.
  • Loading branch information
jneilliii authored Sep 29, 2019
1 parent 9615bf1 commit a85d6d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion octoprint_mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_settings_defaults(self):
tls_insecure=False,
protocol="MQTTv31",
retain=True,
clean_session=False
clean_session=True
),
publish=dict(
baseTopic="octoPrint/",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
plugin_name = "OctoPrint-MQTT"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.8.5"
plugin_version = "0.8.6"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit a85d6d1

Please sign in to comment.