HBASE-9487 create_namespace with property value throws error

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1521577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Enis Soztutar 2013-09-10 18:33:00 +00:00
parent 661d22ce59
commit bf66af4357

View File

@ -769,7 +769,7 @@ module Hbase
end
for k,v in arg
v = v.to_s unless v.nil?
nsb.addProperty(k, v)
nsb.addConfiguration(k, v)
end
end
@admin.createNamespace(nsb.build());