You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.warn { "Suggested Frame max (#{frame.frame_max}) too low, closing connection" }
145
-
reply_text ="failed to negotiate connection parameters: negotiated frame_max = #{frame.frame_max} is lower than the minimum allowed value (#{MIN_FRAME_MAX})"
if too_high?(frame.frame_max, Config.instance.frame_max)
149
-
log.warn { "Suggested Frame max (#{frame.frame_max}) too high, closing connection" }
150
-
reply_text ="failed to negotiate connection parameters: negotiated frame_max = #{frame.frame_max} is higher than the maximum allowed value (#{Config.instance.frame_max})"
if too_high?(frame.channel_max, Config.instance.channel_max)
154
-
log.warn { "Suggested Channel max (#{frame.channel_max}) too high, closing connection" }
155
-
reply_text ="failed to negotiate connection parameters: negotiated channel_max = #{frame.channel_max} is higher than the maximum allowed value (#{Config.instance.channel_max})"
log.warn { "Suggested Frame max (#{frame.frame_max}) too low, closing connection" }
146
+
reply_text ="failed to negotiate connection parameters: negotiated frame_max = #{frame.frame_max} is lower than the minimum allowed value (#{MIN_FRAME_MAX})"
if too_high?(frame.frame_max, Config.instance.frame_max)
150
+
log.warn { "Suggested Frame max (#{frame.frame_max}) too high, closing connection" }
151
+
reply_text ="failed to negotiate connection parameters: negotiated frame_max = #{frame.frame_max} is higher than the maximum allowed value (#{Config.instance.frame_max})"
if too_high?(frame.channel_max, Config.instance.channel_max)
155
+
log.warn { "Suggested Channel max (#{frame.channel_max}) too high, closing connection" }
156
+
reply_text ="failed to negotiate connection parameters: negotiated channel_max = #{frame.channel_max} is higher than the maximum allowed value (#{Config.instance.channel_max})"
0 commit comments