You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2015/04/15 14:04:37 UTC

hbase git commit: HBASE-13475 Small spelling mistake in region_mover#isSuccessfulScan causes NoMethodError (Victor Xu)

Repository: hbase
Updated Branches:
  refs/heads/branch-1 ec472fb18 -> bbab9bf0c


HBASE-13475 Small spelling mistake in region_mover#isSuccessfulScan causes NoMethodError (Victor Xu)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/bbab9bf0
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bbab9bf0
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bbab9bf0

Branch: refs/heads/branch-1
Commit: bbab9bf0c469bc610cb3191d4839ba104d5e0ad4
Parents: ec472fb
Author: tedyu <yu...@gmail.com>
Authored: Wed Apr 15 05:04:32 2015 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Wed Apr 15 05:04:32 2015 -0700

----------------------------------------------------------------------
 bin/region_mover.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/bbab9bf0/bin/region_mover.rb
----------------------------------------------------------------------
diff --git a/bin/region_mover.rb b/bin/region_mover.rb
index 565b0d5..134b032 100644
--- a/bin/region_mover.rb
+++ b/bin/region_mover.rb
@@ -100,7 +100,7 @@ def isSuccessfulScan(admin, r)
   scan = Scan.new(r.getStartKey(), r.getStartKey())
   scan.setBatch(1)
   scan.setCaching(1)
-  scan.setFilter(FilterList.new(FirstKeyOnlyFilter.new(),InclusiveStopFilter().new(r.getStartKey())))
+  scan.setFilter(FilterList.new(FirstKeyOnlyFilter.new(),InclusiveStopFilter.new(r.getStartKey())))
   begin
     table = HTable.new(admin.getConfiguration(), r.getTableName())
     scanner = table.getScanner(scan)