From: db Date: Sat, 16 May 2015 03:00:19 +0000 (-0300) Subject: [bug] pass explicit argument to superclass X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=59fe3f1d51aa0ac1c5fd7029ecce7da7e1c6aafd;p=puppet-mysql.git [bug] pass explicit argument to superclass --- diff --git a/lib/puppet/type/mysql_user.rb b/lib/puppet/type/mysql_user.rb index 0b7e9af..15cc84b 100644 --- a/lib/puppet/type/mysql_user.rb +++ b/lib/puppet/type/mysql_user.rb @@ -13,7 +13,7 @@ Puppet::Type.newtype(:mysql_user) do raise ArgumentError, "MySQL usernames are limited to a maximum of 16 characters" else - super + super(:name) end end end