diff options
Diffstat (limited to 'lib/custodian')
| -rw-r--r-- | lib/custodian/alerter.rb | 15 | 
1 files changed, 2 insertions, 13 deletions
| diff --git a/lib/custodian/alerter.rb b/lib/custodian/alerter.rb index 72bf37a..086d5b3 100644 --- a/lib/custodian/alerter.rb +++ b/lib/custodian/alerter.rb @@ -154,16 +154,11 @@ class Alerter        res = DNSUtil.ip_to_hostname( subject )        if ( res ) -        subject = "#{subject} [#{res}]" +        subject = res        end      end      # -    # Add the test-type to the subject -    # -    subject = "#{subject} #{@details['test_type']}" - -    #      # Document the hostname if the alert relates to an IP address.      #      resolved = "" @@ -225,18 +220,12 @@ class Alerter      if ( ( subject =~ /^([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)$/ ) ||           ( subject =~ /^([0-9a-f:]+)$/ ) )        res = DNSUtil.ip_to_hostname( subject ) -        if ( res ) -        subject = "#{subject} [#{res}]" +        subject = res        end      end      # -    # Add the test-type to the subject -    # -    subject = "#{subject} #{@details['test_type']}" - -    #      # Document the hostname if the alert relates to an IP address.      #      resolved = "" | 
