Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ingestr/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ def get_output_table():
dest_engine = sqlalchemy.create_engine(dest_uri)
with dest_engine.connect() as conn:
res = conn.execute(
"select _kafka__data from testschema.output order by _kafka_msg_id asc"
"select _kafka__data from testschema.output order by _kafka__msg_id asc"
).fetchall()
dest_engine.dispose()
return res
Expand Down
2 changes: 1 addition & 1 deletion ingestr/src/kafka/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def default_msg_processor(msg: Message) -> Dict[str, Any]:
},
"data": msg.value().decode("utf-8"),
},
"_kafka_msg_id": digest128(topic + str(partition) + str(key)),
"_kafka__msg_id": digest128(topic + str(partition) + str(key)),
}


Expand Down