We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e14c9 commit 8083a26Copy full SHA for 8083a26
cloudevents/sdk/http_events.py
@@ -85,7 +85,7 @@ def __init__(
85
"{0} expected type str but found type {1}".format(
86
ce_prefixed_field, type(headers[ce_prefixed_field])
87
))
88
-
+
89
else:
90
# TODO: Support structured CloudEvents
91
raise NotImplementedError
@@ -107,11 +107,11 @@ def is_binary_cloud_event(headers):
107
if f"ce-{field}" not in headers:
108
return False
109
return True
110
111
@staticmethod
112
def detect_event_version(headers, data):
113
"""
114
- Returns event handler depending on specversion within
+ Returns event handler depending on specversion within
115
headers for binary cloudevents or within data for structured
116
cloud events
117
0 commit comments