Github user huangyiminghappy commented on a diff in the pull request:

    https://github.com/apache/incubator-rocketmq/pull/104#discussion_r120526362
  
    --- Diff: common/src/main/java/org/apache/rocketmq/common/MixAll.java ---
    @@ -279,7 +279,7 @@ public static String properties2String(final Properties 
properties) {
             StringBuilder sb = new StringBuilder();
             for (Map.Entry<Object, Object> entry : properties.entrySet()) {
                 if (entry.getValue() != null) {
    -                sb.append(entry.getKey().toString() + "=" + 
entry.getValue().toString() + "\n");
    +                sb.append(entry.getKey().toString().trim() + "=" + 
entry.getValue().toString().trim() + "\n");
    --- End diff --
    
    ok,I try it, thanks


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to