Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Fixes #12848 - enforce downcase node name in old reporting as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ares committed Dec 18, 2015
1 parent b04ab24 commit d502af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/chef_handler_foreman/foreman_reporting.rb
Expand Up @@ -18,7 +18,7 @@ class ForemanReporting < ::Chef::Handler
attr_accessor :uploader

def report
report = { 'host' => node.fqdn, 'reported_at' => Time.now.utc.to_s }
report = { 'host' => node.fqdn.downcase, 'reported_at' => Time.now.utc.to_s }
report_status = Hash.new(0)


Expand Down

0 comments on commit d502af4

Please sign in to comment.