Vyacheslav Krasnov

Results 5 comments of Vyacheslav Krasnov

This is because the method call occurs before initialization analytics.js

This is my solution: ``` async anonymousUserId() { if (Vue.$segment.user) { return Vue.$segment.user().anonymousId() } return new Promise((resolve) => { let timerId = setInterval(() => { if (Vue.$segment.user) { clearInterval(timerId) resolve(Vue.$segment.user().anonymousId())...

In consumer/events.py: ```py def start(self, c): # flush events sent while connection was down. prev = self._close(c) dis = c.event_dispatcher = c.app.events.Dispatcher( c.connection_for_write(), ``` Is it necessary to transmit heartbeat...

https://www.rabbitmq.com/docs/heartbeats Heartbeats executes rabbitmq. They are initialized on the server side. That is, you do not need to do any additional actions on the client side to enable heartbeats. Or...

>What we can see in the first two screenshots is that the heartbeat interval is not set at all for some connections inside the same Celery worker. > In consumer/events.py:...