bufferSize = context.getProperties().getInt(Tokens.REXSTER_GRAPH_BUFFER_SIZE, DEFAULT_BUFFER_SIZE);
} catch (Exception ex) {
throw new GraphConfigurationException(ex);
}
RexsterGraph graph = null;
try {
graph = new RexsterGraph(rexsterGraphUriToConnectTo, bufferSize);
} catch (RuntimeException rte) {
// if the remote server is down just ignore the error for the moment. let
// Rexster think the graph configuration is good. the server may be up later.
}