Skip to content

Commit

Permalink
Stop normalising config keys into string
Browse files Browse the repository at this point in the history
We want to retain regexp keys for #3360
  • Loading branch information
ytti committed Jan 9, 2025
1 parent 5540691 commit c27d0e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/oxidized/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def self.load(cmd_opts = {})
cfgfile = cmd_opts[:config_file] || 'config'
# configuration file with full path as a class instance variable
@configfile = File.join(usrdir, cfgfile)
asetus = Asetus.new(name: 'oxidized', load: false, key_to_s: true, usrdir: usrdir, cfgfile: cfgfile)
asetus = Asetus.new(name: 'oxidized', load: false, usrdir: usrdir, cfgfile: cfgfile)
Oxidized.asetus = asetus

asetus.default.username = 'username'
Expand Down

0 comments on commit c27d0e4

Please sign in to comment.