Skip to content
Merged
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
4 changes: 2 additions & 2 deletions dapr/proto/common/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ message InvokeRequest {
HTTPExtension http_extension = 4;
}

// InvokeResponse is the response message inclduing data and its content type
// InvokeResponse is the response message including data and its content type
// from app callback.
// This message is used in InvokeService of Dapr gRPC Service and OnInvoke
// of AppCallback gRPC service.
Expand All @@ -99,7 +99,7 @@ message StreamPayload {
bytes data = 1;

// Sequence number. This is a counter that starts from 0 and increments by 1 on each chunk sent.
uint32 seq = 2;
uint64 seq = 2;
}

// StateItem represents state key, value, and additional options to save state.
Expand Down
Loading