draakje111

Results 1 comments of draakje111

I found the missing peace of code in MQTTClient.py: class MQTTClient(multiprocessing.Process): def __init__(self, messageQ, commandQ, config): self.logger = logging.getLogger('RFLinkGW.MQTTClient') self.logger.info("Starting...") multiprocessing.Process.__init__(self) self.__messageQ = messageQ self.__commandQ = commandQ self.mqttDataPrefix = config['mqtt_prefix']...