leda_python/deviceMbus.py [555:566]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        except SystemExit:
            raise exception.LedaException("mbus existed")
        except:
            _logger.exception("Err")
            raise exception.LedaException("mbus connect failed")

        if (False == mbusLoopFlag):
            t = threading.Thread(target=mbus_loop, name="mbusLoop")
            t.setDaemon(True)
            t.start()

            mbusLoopFlag = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



leda_python/deviceMbus.py [583:594]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        except SystemExit:
            raise exception.LedaException("mbus existed")
        except:
            _logger.exception("Err")
            raise exception.LedaException("mbus connect failed")

        if (False == mbusLoopFlag):
            t = threading.Thread(target=mbus_loop, name="mbusLoop")
            t.setDaemon(True)
            t.start()

            mbusLoopFlag = True
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



