Skip to content

Commit cda67dc

Browse files
committed
fix: changed headers back to content-type
Signed-off-by: Vivian <[email protected]>
1 parent 59614a3 commit cda67dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudevents/kafka/conversion.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def to_binary(
8888

8989
headers = {}
9090
if event["datacontenttype"]:
91-
headers["datacontenttype"] = event["datacontenttype"].encode("utf-8")
91+
headers["content-type"] = event["datacontenttype"].encode("utf-8")
9292
for attr, value in event.get_attributes().items():
9393
if attr not in ["data", "partitionkey", "datacontenttype"]:
9494
if value is not None:
@@ -190,7 +190,7 @@ def to_structured(
190190

191191
headers = {}
192192
if "datacontenttype" in attrs:
193-
headers["datacontenttype"] = attrs.pop("datacontenttype").encode("utf-8")
193+
headers["content-type"] = attrs.pop("datacontenttype").encode("utf-8")
194194

195195
try:
196196
value = envelope_marshaller(attrs)

0 commit comments

Comments
 (0)