This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 0cb9de0  ISSUE #1472: [TABLE SERVICE] 
TestStorageClientBuilder.testBuildClientInvalidNamespaceName failed
0cb9de0 is described below

commit 0cb9de02c3734f7811c0b36e32e612542533791a
Author: Sijie Guo <[email protected]>
AuthorDate: Mon Jun 4 00:57:09 2018 -0700

    ISSUE #1472: [TABLE SERVICE] 
TestStorageClientBuilder.testBuildClientInvalidNamespaceName failed
    
    Descriptions of the changes in this PR:
    
    *Problem*
    
     #1457 changed the validation of namespace/stream name. so "-" is a valid 
character.
    
    *Solution*
    
    Fix the test.
    
    Master Issue: #1472
    
    Author: Sijie Guo <[email protected]>
    
    Reviewers: Jia Zhai <None>
    
    This closes #1473 from sijie/fix_storage_client_builder, closes #1472
---
 .../java/org/apache/bookkeeper/clients/TestStorageClientBuilder.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/stream/clients/java/all/src/test/java/org/apache/bookkeeper/clients/TestStorageClientBuilder.java
 
b/stream/clients/java/all/src/test/java/org/apache/bookkeeper/clients/TestStorageClientBuilder.java
index 39bd14a..daef4ed 100644
--- 
a/stream/clients/java/all/src/test/java/org/apache/bookkeeper/clients/TestStorageClientBuilder.java
+++ 
b/stream/clients/java/all/src/test/java/org/apache/bookkeeper/clients/TestStorageClientBuilder.java
@@ -50,7 +50,7 @@ public class TestStorageClientBuilder {
             .withSettings(StorageClientSettings.newBuilder()
                 .serviceUri("bk://localhost:4181")
                 .build())
-            .withNamespace("invalid-namespace")
+            .withNamespace("invalid namespace")
             .build();
     }
 

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to