I use nservicebus with rabbitmq and I send a message like this:
BusControl.Request<MessageResponse>(message, Cts.Token).ConfigureAwait(false);
But I never receive a response if some errors occur in the consumer or if the endpoint is offline. How to set timeout for the request/reply message? I want to receive a response after 30 seconds even with a timeout error.