fix(sds): remove optional from causal history field in Message protobuf (#123)

This commit is contained in:
Arseniy Klempner
2025-01-28 02:02:54 -08:00
committed by GitHub
parent dc7497a312
commit 7a01711ffc

View File

@@ -74,7 +74,7 @@ message Message {
string message_id = 2; // Unique identifier of the message
string channel_id = 3; // Identifier of the channel to which the message belongs
optional int32 lamport_timestamp = 10; // Logical timestamp for causal ordering in channel
optional repeated string causal_history = 11; // List of preceding message IDs that this message causally depends on. Generally 2 or 3 message IDs are included.
repeated string causal_history = 11; // List of preceding message IDs that this message causally depends on. Generally 2 or 3 message IDs are included.
optional bytes bloom_filter = 12; // Bloom filter representing received message IDs in channel
optional bytes content = 20; // Actual content of the message
}