//TODO this should be deleted once REM3-121 is available
public boolean ping(long timeoutMs) {
ManagementClientChannelStrategy channelStrategy = getChannelStrategy();
AsyncFuture<Void> future = new PingRequest().execute(executorService, channelStrategy);
try {
Status status = future.await(timeoutMs, TimeUnit.MILLISECONDS);
if (status == Status.WAITING) {
return false;
}
return status == Status.COMPLETE;
} catch (InterruptedException e) {