Skip to content

Commit

Permalink
Merge pull request rabbitmq#17 from liddellj/master
Browse files Browse the repository at this point in the history
Reply queue should not require acknowledgement in dotnet tutorial 6.
  • Loading branch information
michaelklishin committed Oct 24, 2013
2 parents 8fa90cb + 83f08f4 commit be85d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/RPCClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public RPCClient()
channel = connection.CreateModel();
replyQueueName = channel.QueueDeclare();
consumer = new QueueingBasicConsumer(channel);
channel.BasicConsume(replyQueueName, false, consumer);
channel.BasicConsume(replyQueueName, true, consumer);
}

public string Call(string message)
Expand Down

0 comments on commit be85d7d

Please sign in to comment.