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
warning: historical binary regexp match /.../n against UTF-8 string
This is triggered when UTF-8 strings that are not ascii_safe? are checked with the /[\r\n]/n regexp in send_string_data(str, tag) (command_data.rb:57).
Other than adding noise to the logs, I don't know if it makes any significant difference. If we were looking at MatchData, it would matter... but here we're just looking at match?.
Seeing the following in logs:
This is triggered when UTF-8 strings that are not
ascii_safe?
are checked with the/[\r\n]/n
regexp insend_string_data(str, tag)
(command_data.rb:57
).Other than adding noise to the logs, I don't know if it makes any significant difference. If we were looking at MatchData, it would matter... but here we're just looking at
match?
.See also: https://bugs.ruby-lang.org/issues/19767 and the commit links in the comments there.
The text was updated successfully, but these errors were encountered: