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

update: adjust grpc body max size #127

Merged
merged 1 commit into from
Jun 15, 2024
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
1 change: 1 addition & 0 deletions cmd/apps/apis/fsapi/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ func New(ctrl controller.Controller, pathEntryMgr *pathmgr.PathManager, cfg conf

var opts = []grpc.ServerOption{
grpc.Creds(creds),
grpc.MaxRecvMsgSize(1024 * 1024 * 50), // 50M
common.WithCommonInterceptors(),
common.WithStreamInterceptors(),
}
Expand Down
1 change: 1 addition & 0 deletions cmd/apps/apis/pathmgr/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ func (m *PathManager) CreateFile(ctx context.Context, parentDir string, attr typ

en, err = m.ctrl.CreateEntry(ctx, parent.ID, attr)
if err != nil {
m.logger.Errorw("create file entry failed", "path", entryPath, "err", err)
return nil, err
}
m.logger.Infow("create file entry", "path", entryPath, "entry", en.ID)
Expand Down
Loading