Skip to content

Commit

Permalink
Add New gRPC Options and Add Reconnect Logic for connection Pool (#2685
Browse files Browse the repository at this point in the history
…) (#2693)

Signed-off-by: kpango <[email protected]>
Co-authored-by: Yusuke Kato <[email protected]>
  • Loading branch information
vdaas-ci and kpango authored Oct 10, 2024
1 parent 8834a7e commit fbc36f3
Show file tree
Hide file tree
Showing 94 changed files with 3,107 additions and 2,540 deletions.
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

0 comments on commit fbc36f3

Please sign in to comment.