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

Backport PR #2685 to release/v1.7 for Add New gRPC Options and Add Reconnect Logic for connection Pool #2693

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 .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ assignees: ""
- Rust Version: v1.81.0
- Docker Version: v27.3.1
- Kubernetes Version: v1.31.1
- Helm Version: v3.16.1
- Helm Version: v3.16.2
- NGT Version: v2.2.4
- Faiss Version: v1.8.0
- Faiss Version: v1.9.0
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/security_issue_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ assignees: ""
- Rust Version: v1.81.0
- Docker Version: v27.3.1
- Kubernetes Version: v1.31.1
- Helm Version: v3.16.1
- Helm Version: v3.16.2
- NGT Version: v2.2.4
- Faiss Version: v1.8.0
- Faiss Version: v1.9.0
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
- Rust Version: v1.81.0
- Docker Version: v27.3.1
- Kubernetes Version: v1.31.1
- Helm Version: v3.16.1
- Helm Version: v3.16.2
- NGT Version: v2.2.4
- Faiss Version: v1.8.0
- Faiss Version: v1.9.0

### Checklist

Expand Down
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,28 @@ help:
{ lastLine = $$0 }' $(MAKELISTS) | sort -u
@printf "\n"

.PHONY: perm
## set correct permissions for dirs and files
perm:
find $(ROOTDIR) -type d -not -path "$(ROOTDIR)/.git*" -exec chmod 755 {} \;
find $(ROOTDIR) -type f -not -path "$(ROOTDIR)/.git*" -not -name ".gitignore" -exec chmod 644 {} \;
if [ -d "$(ROOTDIR)/.git" ]; then \
chmod 750 "$(ROOTDIR)/.git"; \
if [ -f "$(ROOTDIR)/.git/config" ]; then \
chmod 644 "$(ROOTDIR)/.git/config"; \
fi; \
if [ -d "$(ROOTDIR)/.git/hooks" ]; then \
find "$(ROOTDIR)/.git/hooks" -type f -exec chmod 755 {} \;; \
fi; \
fi
if [ -f "$(ROOTDIR)/.gitignore" ]; then \
chmod 644 "$(ROOTDIR)/.gitignore"; \
fi
if [ -f "$(ROOTDIR)/.gitattributes" ]; then \
chmod 644 "$(ROOTDIR)/.gitattributes"; \
fi


.PHONY: all
## execute clean and deps
all: clean deps
Expand Down
2 changes: 1 addition & 1 deletion apis/grpc/v1/agent/core/agent.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/agent/sidecar/sidecar.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/discoverer/discoverer.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/filter/egress/egress_filter.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/filter/ingress/ingress_filter.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/meta/meta.pb.go

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

2 changes: 1 addition & 1 deletion apis/grpc/v1/mirror/mirror.pb.go

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

Loading
Loading