HBASE-14655 Addendum passes User to store#compact()

This commit is contained in:
tedyu 2015-10-27 11:17:30 -07:00
parent f91546f2e6
commit e04e7402cd
1 changed files with 1 additions and 1 deletions

View File

@ -1823,7 +1823,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
// We no longer need to cancel the request on the way out of this
// method because Store#compact will clean up unconditionally
requestNeedsCancellation = false;
store.compact(compaction, throughputController);
store.compact(compaction, throughputController, user);
} catch (InterruptedIOException iioe) {
String msg = "compaction interrupted";
LOG.info(msg, iioe);