Skip to content

Commit

Permalink
feat: support headers for message (#108)
Browse files Browse the repository at this point in the history
Signed-off-by: Yashash H L <[email protected]>
  • Loading branch information
yhl25 authored Mar 21, 2024
1 parent 40335cf commit 526a7c6
Show file tree
Hide file tree
Showing 43 changed files with 705 additions and 437 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ proto:
generate:
go generate ./...

.PHONY: image-push-all
image-push-all:
for dir in $(shell find ./pkg -name 'Makefile' -exec dirname {} \;); do \
$(MAKE) -C $$dir image-push TAG=$(TAG); \
done

106 changes: 62 additions & 44 deletions pkg/apis/proto/map/v1/map.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pkg/apis/proto/map/v1/map.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ message MapRequest {
bytes value = 2;
google.protobuf.Timestamp event_time = 3;
google.protobuf.Timestamp watermark = 4;
map<string, string> headers = 5;
}

/**
Expand Down
Loading

0 comments on commit 526a7c6

Please sign in to comment.