ARTEMIS-1044 Avoiding StackOverflow on AMQP under load

This commit is contained in:
Clebert Suconic 2017-03-16 18:03:54 -04:00
parent 4936291aec
commit a4beb18a6e
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ public class AMQPSessionCallback implements SessionCallback {
delivery.disposition(Accepted.getInstance());
delivery.settle();
}
connection.flush(true);
connection.flush();
}
@Override