cs-salim

Results 4 issues of cs-salim

I have nest microservices making rpc requests using `AmqpConnection.request()`, which crashes the whole microservice if the connection to RMQ is down at that moment. Some errors are handled correctly but...

rabbitmq
Pending Repro

### Are you requesting a feature, reporting a bug or ask a question? Bug report ### What is the current behavior? When changing a question choice value, "visible if" fields...

question

### Are you requesting a feature, reporting a bug or ask a question? Asking a question ### What is the current behavior? Question choices are automatically created with an incremental...

`AmqpConnection.request` calls `publish` with a set list of parameters: https://github.com/golevelup/nestjs/blob/master/packages/rabbitmq/src/amqp/connection.ts#L402 ``` await this.publish( requestOptions.exchange, requestOptions.routingKey, payload, { replyTo: DIRECT_REPLY_QUEUE, correlationId, headers: requestOptions.headers, expiration: requestOptions.expiration, } ); ``` Which doesn't let...

enhancement
rabbitmq