Fix namespace bug (#1276)

* fix #1274
This commit is contained in:
oatiz 2018-05-28 21:56:09 +08:00 committed by 吴晟 Wu Sheng
parent faaf3e829b
commit dbc0f8b9d2
1 changed files with 1 additions and 1 deletions

View File

@ -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;