Skip to content

Commit

Permalink
fix body limit (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
kooksee authored Dec 18, 2024
1 parent af18b82 commit eca7b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/grpcs/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (s *serviceImpl) DixInject(
EnableIPValidation: true,
EnablePrintRoutes: conf.EnablePrintRoutes,
AppName: version.Project(),
BodyLimit: 100 * 1024 * 1024,
BodyLimit: 500 * 1024 * 1024,
ErrorHandler: func(ctx *fiber.Ctx, err error) error {
if err == nil {
return nil
Expand Down

0 comments on commit eca7b56

Please sign in to comment.