Hi

edit the removeServer method in the SessionRemote class so that it looks like:

    public void removeServer(IOException e, int i, int count) {
        trace.error(e, "removing server because of exception");
        transferList.remove(i);
        if (transferList.size() == 0 && autoReconnect(count)) {
            return;
        }
        checkClosed();
        switchOffCluster();
    }

Then run your tests again and look in the trace logs to see what the error was.

The bug was that we were logging the problem with "debug" level
priority, so it would not show up when running H2 normally.

Regards, Noel

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to