Skip to content

Commit

Permalink
ARTEMIS-3309 Fixing QueueControlUsingCoreTest
Browse files Browse the repository at this point in the history
  • Loading branch information
clebertsuconic committed May 25, 2021
1 parent f6df608 commit 4de9e88
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -458,7 +458,7 @@ public int moveMessages(int flushLimit,

@Override
public int moveMessages(int flushLimit, String filter, String otherQueueName, boolean rejectDuplicates, int messageCount) throws Exception {
return (Integer) proxy.invokeOperation("moveMessages", flushLimit, filter, otherQueueName, rejectDuplicates, messageCount);
return (Integer) proxy.invokeOperation(Integer.class, "moveMessages", flushLimit, filter, otherQueueName, rejectDuplicates, messageCount);
}

@Override
Expand Down

0 comments on commit 4de9e88

Please sign in to comment.