ARTEMIS-2329 AddressSettings inconsistence on decoding

This is fixing these tests:
- org.apache.activemq.artemis.tests.integration.paging.PagingOrderTest#testPagingOverCreatedDestinationQueues
- org.apache.activemq.artemis.tests.integration.paging.PagingOrderTest#testPagingOverCreatedDestinationTopics

No additional tests are needed as this change is covereted by the current testsuite
This commit is contained in:
Clebert Suconic 2019-05-02 11:48:01 -04:00
parent bede6032c9
commit 9ec9e0785b
1 changed files with 1 additions and 1 deletions

View File

@ -1088,7 +1088,7 @@ public class AddressSettings implements Mergeable<AddressSettings>, Serializable
BufferHelper.sizeOfNullableBoolean(defaultGroupRebalance) +
BufferHelper.sizeOfNullableInteger(defaultGroupBuckets) +
BufferHelper.sizeOfNullableLong(autoDeleteQueuesMessageCount) +
BufferHelper.sizeOfNullableBoolean(autoDeleteQueues);
BufferHelper.sizeOfNullableBoolean(autoDeleteCreatedQueues);
}
@Override