File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ defmodule RealtimeWeb.Endpoint do
22
22
# the number of times Cowboy need to request more packets from the port driver at
23
23
# the expense of potentially higher memory being used.
24
24
active_n: 100 ,
25
+ # Skip validating UTF8 for faster frame processing.
26
+ # Currently all text frames as handled only with JSON which already requires UTF-8
27
+ validate_utf8: false ,
25
28
serializer: [
26
29
{ Phoenix.Socket.V1.JSONSerializer , "~> 1.0.0" } ,
27
30
{ Phoenix.Socket.V2.JSONSerializer , "~> 2.0.0" }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Realtime.MixProject do
4
4
def project do
5
5
[
6
6
app: :realtime ,
7
- version: "2.47.4 " ,
7
+ version: "2.48.0 " ,
8
8
elixir: "~> 1.17.3" ,
9
9
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
10
start_permanent: Mix . env ( ) == :prod ,
You can’t perform that action at this time.
0 commit comments