@Override
  protected void makeDlqConsumer() throws Exception {
    dlqDestination = createDlqDestination();
    dlqConnection = getConnectionFactory().createConnection("system", "manager");
    dlqConnection.start();
    dlqSession = dlqConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);

    dlqConsumer = dlqSession.createConsumer(dlqDestination);
  }