public void CreateConsumerChannel()
        {
            if (!IsConnected)
            {
                Logger.Error("No connection while creating consumer channels, retrying.");
                TryConnect();
            }

            _eventBusService = new EventBusRabbitMqImpl(this, _serviceProvider, RabbitMqChannels.UpdateFollowerForUser);
            _eventBusService.CreateConsumerChannel();
        }