Github user franz1981 commented on the issue:
https://github.com/apache/activemq-artemis/pull/2460
@mnovak1 @feuillemorte `JournalFilesRepository.journalFileOpenTimeout`
isn't public or exposed by any getter hence to check it can be done in 2 ways:
1. using a mock to intercept it when created
2. exposing it with a getter on `JournalFilesRepository` so it can be
verified
AFAIK we are not doing it for the other classes, so I think it can be
avoided.
But if we have some good reason to do it, @feuillemorte can find a proper
way to do it :+1:
---