Yeah, findbugs flagged that and I was meaning to get back to it.
________________________________ From: ryan rawson (JIRA) <[email protected]> To: [email protected] Sent: Tue, October 20, 2009 5:55:59 AM Subject: [jira] Created: (HBASE-1919) code: HRS.delete seems to ignore exceptions it shouldnt code: HRS.delete seems to ignore exceptions it shouldnt ------------------------------------------------------- Key: HBASE-1919 URL: https://issues.apache.org/jira/browse/HBASE-1919 Project: Hadoop HBase Issue Type: Bug Affects Versions: 0.20.1 Reporter: ryan rawson Fix For: 0.20.2, 0.21.0 the code is: region.delete(delete, lid, writeToWAL); this.hlog.sync(region.getRegionInfo().isMetaRegion()); } catch (WrongRegionException ex) { } catch (NotServingRegionException ex) { // ignore } catch (Throwable t) { throw convertThrowableToIOE(cleanup(t)); } we ignore those 2 exceptions... weird... should not be! -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.
