Skip to content

Commit

Permalink
fix(): reduce websocket message limit to 10MB
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jan 11, 2024
1 parent 431eff5 commit 0727b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/websockets.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (
)

const (
messageSizeLimit = 32 * 1024 * 1024 // 32MB
messageSizeLimit = 10 * 1024 * 1024 // 10MB

)

Expand Down

0 comments on commit 0727b9c

Please sign in to comment.