MassTransit RequestResponse sample move responses to skipped queue on .Net core
See original GitHub issueI ported MassTransit Sample-RequestResponse sample to .net core. Did some small modifications to the sample in order to host the .net core service. Although the service can receive the requests, the response is not received by the client and end up in ignore_skipped queue on rabbitmq. However, in some executions I receive a response to the first request I sent, and fails there after. What is the root cause for this? How can we implement RequestResponse pattern on MassTransit?
System.AggregateException: One or more errors occurred. (Timeout waiting for response, RequestId: 61000000-5d62-0015-cafc-08d4d8a6a3f2) —> MassTransit.RequestTimeoutException: Timeout waiting for response, RequestId: 61000000-5d62-0015-cafc-08d4d8a6a3f2 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at MassTransit.RequestClient2.<Request>d__6.MoveNext() --- End of stack trace from previous location where exception was thrown --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at System.Runtime.CompilerServices.TaskAwaiter1.GetResult() at Client.Program.<>c__DisplayClass0_2.<<Main>b__1>d.MoveNext()
– | –
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (5 by maintainers)

Top Related StackOverflow Question
Although a new queue is created I still doesn’t get the response, using the latest nuget “4.0.0.1248-develop” , Does it a new bug?
Found the issue this if statement will never be true because the queue name is set to an initial value of “ignore”.