Skip to content

Commit

Permalink
Merge pull request #101 from dolittle/fix-names
Browse files Browse the repository at this point in the history
Use StringValue for event source and partition
  • Loading branch information
jakhog authored Mar 21, 2022
2 parents a530a95 + 0dd7b5c commit c99057c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Source/Runtime/EventHorizon/Consumer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import "Fundamentals/Services/ReverseCallContext.proto";
import "Fundamentals/Services/Ping.proto";
import "Runtime/EventHorizon/Subscriptions.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";

package dolittle.runtime.eventhorizon;

Expand All @@ -22,7 +23,7 @@ message EventHorizonCommittedEvent {
uint64 eventLogSequenceNumber = 1;
google.protobuf.Timestamp occurred = 2;
protobuf.Uuid eventSourceIdLegacy = 3 [deprecated = true];
string eventSourceId = 11;
google.protobuf.StringValue eventSourceId = 11;
execution.ExecutionContext executionContext = 4;
artifacts.Artifact eventType = 5;
bool public = 6;
Expand All @@ -42,7 +43,7 @@ message ConsumerSubscriptionRequest {
protobuf.Uuid tenantId = 2;
protobuf.Uuid streamId = 3;
protobuf.Uuid partitionIdLegacy = 4 [deprecated = true];
string partitionId = 6;
google.protobuf.StringValue partitionId = 6;
uint64 streamPosition = 5;
}

Expand Down

0 comments on commit c99057c

Please sign in to comment.