265266267268269270271272273274275
// Sync all user defined indices while ( list.hasNext() ) { Index idx = ( Index ) list.next(); idx.sync(); } master.sync(); try
287288289290291292293294295296297
{ Index idx = ( Index ) list.next(); try { idx.sync(); } catch ( Throwable t ) { t.printStackTrace(); if ( null == rootCause )
288289290291292293294295296297298