We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 520097c commit 9b76718Copy full SHA for 9b76718
lib/puppet/provider/mysql_user/mysql.rb
@@ -23,7 +23,7 @@ def self.instances
23
end
24
@max_user_connections, @max_connections_per_hour, @max_queries_per_hour,
25
@max_updates_per_hour, ssl_type, ssl_cipher, x509_issuer, x509_subject,
26
- @password, @plugin, @authentication_string = mysql_caller(query, 'regular').split(%r{\t})
+ @password, @plugin, @authentication_string = mysql_caller(query, 'regular').chomp.split(%r{\t})
27
@tls_options = parse_tls_options(ssl_type, ssl_cipher, x509_issuer, x509_subject)
28
if newer_than('mariadb' => '10.1.21') && @plugin == 'ed25519'
29
# Some auth plugins (e.g. ed25519) use authentication_string
0 commit comments