HBASE-11580 Failover handling for secondary region replicas - ADDENDUM for javadoc fixes

This commit is contained in:
Enis Soztutar 2015-03-04 14:21:52 -08:00
parent 464e7ce685
commit d1ca560ff7
1 changed files with 3 additions and 3 deletions

View File

@ -1983,7 +1983,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
/**
* Flushing all stores.
*
* @see #internalFlushcache(Collection, MonitoredTask)
* @see #internalFlushcache(Collection, MonitoredTask, boolean)
*/
private FlushResult internalFlushcache(MonitoredTask status)
throws IOException {
@ -1993,7 +1993,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
/**
* Flushing given stores.
*
* @see #internalFlushcache(WAL, long, Collection, MonitoredTask)
* @see #internalFlushcache(WAL, long, Collection, MonitoredTask, boolean)
*/
private FlushResult internalFlushcache(final Collection<Store> storesToFlush,
MonitoredTask status, boolean writeFlushWalMarker) throws IOException {
@ -2238,7 +2238,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver { //
* Writes a marker to WAL indicating a flush is requested but cannot be complete due to various
* reasons. Ignores exceptions from WAL. Returns whether the write succeeded.
* @param wal
* @return
* @return whether WAL write was successful
*/
private boolean writeFlushRequestMarkerToWAL(WAL wal, boolean writeFlushWalMarker) {
if (writeFlushWalMarker && wal != null && !writestate.readOnly) {