From 3690a3f6a6ca74ddaaa58cd788df250d8dd15a14 Mon Sep 17 00:00:00 2001 From: Jason Hu Date: Sat, 11 Aug 2018 06:10:19 -0700 Subject: [PATCH 1/3] Embedded MQTT broker needs setup its own password --- source/_docs/mqtt/broker.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/_docs/mqtt/broker.markdown b/source/_docs/mqtt/broker.markdown index 47a19df934fb..887eb7626a47 100644 --- a/source/_docs/mqtt/broker.markdown +++ b/source/_docs/mqtt/broker.markdown @@ -22,13 +22,15 @@ Home Assistant contains an embedded MQTT broker. If no broker configuration is g | Port | 1883 | | Protocol | 3.1.1 | | User | homeassistant | -| Password | Your API [password](/components/http/) | +| Password | no default value | | Websocket port | 8080 | +> Since 0.77 release, embedded broker doesn't use your [API password](/components/http/) as default value. MQTT component will fail to setup if you have API passowrd configured, but don't have MQTT password confgiured likes following example. ```yaml # Example configuration.yaml entry mqtt: + password: YOUR_MQTT_PASSWORD ```

From 4f59b6d1c24a06143229c5ff5c7b145203f115ea Mon Sep 17 00:00:00 2001 From: Jason Hu Date: Sun, 12 Aug 2018 16:52:31 -0700 Subject: [PATCH 2/3] Update broker.markdown --- source/_docs/mqtt/broker.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/mqtt/broker.markdown b/source/_docs/mqtt/broker.markdown index 887eb7626a47..6241bbc05d56 100644 --- a/source/_docs/mqtt/broker.markdown +++ b/source/_docs/mqtt/broker.markdown @@ -25,7 +25,7 @@ Home Assistant contains an embedded MQTT broker. If no broker configuration is g | Password | no default value | | Websocket port | 8080 | -> Since 0.77 release, embedded broker doesn't use your [API password](/components/http/) as default value. MQTT component will fail to setup if you have API passowrd configured, but don't have MQTT password confgiured likes following example. +> Since 0.77 release, the embedded broker doesn't use your [API password](/components/http/) as default password. The MQTT component will fail to setup if you have API password configured, but don't have MQTT password configured as in the following example. ```yaml # Example configuration.yaml entry From 325f5d7ff2958dae5d819b5134661cfed33a153d Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 13 Aug 2018 20:09:41 +0200 Subject: [PATCH 3/3] :pencil2: Minor tweak --- source/_docs/mqtt/broker.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/mqtt/broker.markdown b/source/_docs/mqtt/broker.markdown index 6241bbc05d56..b834900a6fce 100644 --- a/source/_docs/mqtt/broker.markdown +++ b/source/_docs/mqtt/broker.markdown @@ -25,7 +25,7 @@ Home Assistant contains an embedded MQTT broker. If no broker configuration is g | Password | no default value | | Websocket port | 8080 | -> Since 0.77 release, the embedded broker doesn't use your [API password](/components/http/) as default password. The MQTT component will fail to setup if you have API password configured, but don't have MQTT password configured as in the following example. +> Since release 0.77, the embedded broker does not use your [API password](/components/http/) as the default password. The MQTT component will fail to set up if you have API password configured, but don't have MQTT password configured as in the following example. ```yaml # Example configuration.yaml entry