Skip to content

Commit

Permalink
Merge pull request #162 from janwillies/msg-size
Browse files Browse the repository at this point in the history
set grpc default message size to 4mb
  • Loading branch information
negz authored Sep 6, 2024
2 parents dd665ee + de2b81e commit 8b561e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
const (
DefaultNetwork = "tcp"
DefaultAddress = ":9443"
DefaultMaxRecvMsgSize = 4096
DefaultMaxRecvMsgSize = 1024 * 1024 * 4
)

// ServeOptions configure how a Function is served.
Expand Down

0 comments on commit 8b561e6

Please sign in to comment.