Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr ### Fixed - Fix an issue in the js runtime that would prevent the matchmaker matched callback to function correctly. - Allow the console API to return large responses based on the configured max message size. ## [3.1.1] - 2021-02-15 ### Changed Loading server/console.go +4 −1 Original line number Diff line number Diff line Loading @@ -156,7 +156,10 @@ func StartConsoleServer(logger *zap.Logger, startupLogger *zap.Logger, db *sql.D dialAddr = fmt.Sprintf("%v:%d", config.GetConsole().Address, config.GetConsole().Port-3) } dialOpts := []grpc.DialOption{ grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(int(config.GetConsole().MaxMessageSizeBytes))), grpc.WithDefaultCallOptions( grpc.MaxCallSendMsgSize(int(config.GetConsole().MaxMessageSizeBytes)), grpc.MaxCallRecvMsgSize(int(config.GetConsole().MaxMessageSizeBytes)), ), grpc.WithInsecure(), } if err := console.RegisterConsoleHandlerFromEndpoint(ctx, grpcGateway, dialAddr, dialOpts); err != nil { Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -10,6 +10,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr ### Fixed - Fix an issue in the js runtime that would prevent the matchmaker matched callback to function correctly. - Allow the console API to return large responses based on the configured max message size. ## [3.1.1] - 2021-02-15 ### Changed Loading
server/console.go +4 −1 Original line number Diff line number Diff line Loading @@ -156,7 +156,10 @@ func StartConsoleServer(logger *zap.Logger, startupLogger *zap.Logger, db *sql.D dialAddr = fmt.Sprintf("%v:%d", config.GetConsole().Address, config.GetConsole().Port-3) } dialOpts := []grpc.DialOption{ grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(int(config.GetConsole().MaxMessageSizeBytes))), grpc.WithDefaultCallOptions( grpc.MaxCallSendMsgSize(int(config.GetConsole().MaxMessageSizeBytes)), grpc.MaxCallRecvMsgSize(int(config.GetConsole().MaxMessageSizeBytes)), ), grpc.WithInsecure(), } if err := console.RegisterConsoleHandlerFromEndpoint(ctx, grpcGateway, dialAddr, dialOpts); err != nil { Loading