You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2015/08/13 18:57:16 UTC

[4/4] hbase git commit: HBASE-14214 list_labels shouldn't raise ArgumentError if no labels are defined.

HBASE-14214 list_labels shouldn't raise ArgumentError if no labels are defined.


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

Branch: refs/heads/0.98
Commit: 8b9ed1c2358926d4b9abe6d627137eb497e7825b
Parents: a3914d6
Author: anoopsjohn <an...@gmail.com>
Authored: Thu Aug 13 14:32:59 2015 +0530
Committer: Andrew Purtell <ap...@apache.org>
Committed: Thu Aug 13 09:56:52 2015 -0700

----------------------------------------------------------------------
 hbase-shell/src/main/ruby/hbase/visibility_labels.rb | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/8b9ed1c2/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/main/ruby/hbase/visibility_labels.rb b/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
index b8b3a78..c591d9e 100644
--- a/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
+++ b/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
@@ -90,9 +90,6 @@ module Hbase
         if response.nil?
           raise(ArgumentError, "DISABLED: Visibility labels feature is not available")
         end
-        if response.getAuthList.empty?
-          raise(ArgumentError, "No authentication set for the given user " + user)
-        end
         return response.getAuthList
       end
     end
@@ -104,9 +101,6 @@ module Hbase
         if response.nil?
           raise(ArgumentError, "DISABLED: Visibility labels feature is not available")
         end
-        if response.getLabelList.empty?
-          raise(ArgumentError, "No auth label defined")
-        end
         return response.getLabelList
       end
     end
@@ -158,4 +152,4 @@ module Hbase
       @admin.tableExists(table_name)
     end
   end
-end
\ No newline at end of file
+end