Skip to content

Commit

Permalink
Disable keepalive by default - it's causing big websocket connection …
Browse files Browse the repository at this point in the history
…issues
  • Loading branch information
essenciary committed Oct 23, 2024
1 parent 7049a30 commit d60f522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Base.@kwdef mutable struct Settings
webchannels_eval_command::String = ">eval:"
webchannels_base64_marker::String = "base64:"
webchannels_timeout::Int = 1_000
webchannels_keepalive_frequency::Int = 30_000 # 30 seconds
webchannels_keepalive_frequency::Int = 0 # 30 seconds
webchannels_server_gone_alert_timeout::Int = 10_000 # 10 seconds
webchannels_connection_attempts = 10
webchannels_reconnect_delay = 500 # milliseconds
Expand Down

0 comments on commit d60f522

Please sign in to comment.