txn = new ReadonlyTxn(repImpl, NO_ACK);
CursorConfig config = new CursorConfig();
config.setReadCommitted(true);
cursor = makeCursor(groupDbImpl, txn, config);
OperationStatus status =
cursor.getSearchKey(nodeNameKey, value, null);
if (status == OperationStatus.SUCCESS) {
/* Let's see if the entry needs updating. */
RepNodeImpl miInDb = mib.entryToObject(value);
if (miInDb.equivalent(ensureNode)) {