Can start glances with MQTT export #1581

This commit is contained in:
nicolargo 2020-01-11 11:30:06 +01:00
parent ecb9db9c86
commit a7a4203641

View File

@ -57,7 +57,7 @@ class Export(GlancesExport):
self.port = int(self.port) or 8883
self.topic = self.topic or 'glances'
self.user = self.user or 'glances'
self.tls = (self.tls.lower() == 'true')
self.tls = (self.tls and self.tls.lower() == 'true')
# Init the MQTT client
self.client = self.init()