Github user cshannon commented on the issue:
https://github.com/apache/activemq-artemis/pull/2278
The issue is here:
https://github.com/apache/activemq-artemis/blob/106e71bdf4f1cf7ddf0dfc37ce6bab76d5c00dad/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/ConsumerWindowSizeTest.java#L1457
That line should now change to: assertTrue(Wait.waitFor(() ->
cons.getAvailableCredits().get() == consumer.getClientWindowSize() * 2, 5000,
500));
And that will fix it---
