Commit dbc0f8b9 authored by oatiz's avatar oatiz Committed by 吴晟
Browse files

Fix namespace bug (#1276)

* fix #1274
parent faaf3e82
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ public class CarrierItem implements Iterator<CarrierItem> {
        if (StringUtil.isEmpty(NAMESPACE)) {
            this.headKey = headKey;
        } else {
            this.headKey = NAMESPACE + ":" + headValue;
            this.headKey = NAMESPACE + "-" + headKey;
        }
        this.headValue = headValue;
        this.next = next;