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 9a74b41 commit e427e08Copy full SHA for e427e08
app/app.py
@@ -357,9 +357,8 @@ async def on_message_for_websocket(
357
if message_string[0] != "{":
358
# The EventStream Service is permitted to append to the protobuf string
359
# as long as it uses the '|' delimiter. Here qwe add offset and timestamp.
360
- message_string += (
361
- f"|{message_context.offset}|{message_context.timestamp}"
362
- )
+ message_string += f"|offset: {message_context.offset}"
+ message_string += f"|timestamp: {message_context.timestamp}"
363
else:
364
# The EventStream Service is permitted to append to the JSON string
365
# as long as it uses keys with the prefix "ess_"
0 commit comments