Max

Results 22 comments of Max

@litnimax Сейчас мы в panoramisk'e подписываемся на все АМИ события. Таким образом, солт реактор будет вызываться на каждое событие, а наши security события составят пару процентов от общего числа событий,...

Hi! Thanks for your feedback. Can you create a pull request to add your feature?

Warnings при запуске - это не ошибки. То что выходит после CtRL+C = тоже забейте. А вот чтобы разделить Web морду и Asterisk, надо использовать SSH (ибо ВЕБ морда =...

There is no active maintainer as far as I know. May be u? :-)

Sorry I don't remember all features, this software is not supported.

The problem is that it cannot be cancelled. Please have a look. This is what a do at __init__: ```python for signame in ('SIGINT', 'SIGTERM'): self.loop.add_signal_handler(getattr(signal, signame), lambda: asyncio.ensure_future(self.stop())) ```...

As far as I understand the problem is with decorator @mqtt_connected: ``` def mqtt_connected(func): """ MQTTClient coroutines decorator which will wait until connection before calling the decorated method. :param func:...

I modified stop function and now it's ok with me. ```python async def stop(self): logger.info('Stopping mqttrpc...') # Check subscriptions if self._connected_state.is_set(): await self.unsubscribe(self.subscriptions) await self.disconnect() tasks = [task for task...