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:15 UTC

[3/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/be5a8c51
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/be5a8c51
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/be5a8c51

Branch: refs/heads/branch-1.0
Commit: be5a8c51df33805572463ae43825af702037eed5
Parents: 50a5571
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:47 2015 -0700

----------------------------------------------------------------------
 hbase-shell/src/main/ruby/hbase/visibility_labels.rb | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/be5a8c51/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 a3f8b1a..4b99bf9 100644
--- a/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
+++ b/hbase-shell/src/main/ruby/hbase/visibility_labels.rb
@@ -94,9 +94,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
@@ -108,9 +105,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