Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for deletes in the memberlist backed KV store #612

Merged
merged 21 commits into from
Jan 30, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix go mod
  • Loading branch information
aldernero committed Oct 21, 2024
commit 66fb2b13aad196f2e714d737a53114087ec990b9
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -6,14 +6,14 @@ DONT_FIND := -name vendor -prune -o -name .git -prune -o -name .cache -prune -o
PROTO_DEFS := $(shell find . $(DONT_FIND) -type f -name '*.proto' -print)
PROTO_GOS := $(patsubst %.proto,%.pb.go,$(PROTO_DEFS))
# Download the proper protoc version for Darwin (osx) and Linux.
# If you need windows for some reason it's at https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-win64.zip
# If you need windows for some reason it's at https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/protoc-3.6.1-win32.zip
UNAME_S := $(shell uname -s)
PROTO_PATH := https://github.com/protocolbuffers/protobuf/releases/download/v28.2/
PROTO_PATH := https://github.com/protocolbuffers/protobuf/releases/download/v3.6.1/
ifeq ($(UNAME_S), Linux)
PROTO_ZIP=protoc-28.2-linux-x86_64.zip
PROTO_ZIP=protoc-3.6.1-linux-x86_64.zip
endif
ifeq ($(UNAME_S), Darwin)
PROTO_ZIP=protoc-28.2-osx-x86_64.zip
PROTO_ZIP=protoc-3.6.1-osx-x86_64.zip
endif
GO_MODS=$(shell find . $(DONT_FIND) -type f -name 'go.mod' -print)

86 changes: 43 additions & 43 deletions server/fake_server.pb.go

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