Temporary fix for the client_id generation (fixes #8315) (#8336)

* Temporary fix for the client_id generation (fixes #8315)

* Fix comment

* Move client id setting.

* Lint
This commit is contained in:
Fabian Affolter 2017-07-05 06:47:30 +02:00 committed by Paulus Schoutsen
parent ea5bec3ef4
commit 0ecceb601b

View File

@ -315,6 +315,10 @@ def async_setup(hass, config):
client_cert = conf.get(CONF_CLIENT_CERT)
tls_insecure = conf.get(CONF_TLS_INSECURE)
protocol = conf[CONF_PROTOCOL]
# hbmqtt requires a client id to be set.
if client_id is None:
client_id = 'home-assistant'
elif broker_config:
# If no broker passed in, auto config to internal server
broker, port, username, password, certificate, protocol = broker_config