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

feat: add endpoint to support minio #26

Merged
merged 2 commits into from
Apr 4, 2024
Merged
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
2 changes: 2 additions & 0 deletions protobuf/schema/v1/server-service.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
syntax = "proto3";

Check failure on line 1 in protobuf/schema/v1/server-service.proto

View workflow job for this annotation

GitHub Actions / lint-protos

Filename "server-service.proto" should be lower_snake_case.proto, such as "server_service.proto".

package schema.v1;

Expand Down Expand Up @@ -88,6 +88,8 @@
message S3Cache {
string region = 1;
string bucket_name = 2;
string endpoint = 3;
bool insecure = 4;
}

message AzureCache {
Expand Down
Loading