clearIO();
try
{
postOffice.sendQueueInfoToQueue(new SimpleString(queueName), new SimpleString(address));
GroupingHandler handler = server.getGroupingHandler();
if (handler != null)
{
// the group handler would miss responses if the group was requested before the reset was done
// on that case we ask the groupinghandler to replay its send in case it's waiting for the information
handler.resendPending();
}
}
finally
{
blockOnIO();