@@ -77,7 +77,7 @@ module Agents |
||
77 | 77 |
measured_result = ping(url) |
78 | 78 |
total_time = Time.now.to_f - start |
79 | 79 |
|
80 |
- current_status = measured_result.status.to_s |
|
80 |
+ current_status = measured_result ? measured_result.status.to_s : 0 |
|
81 | 81 |
return if options['changes_only'] == 'true' && current_status == memory['last_status'].to_s |
82 | 82 |
|
83 | 83 |
payload = { 'url' => url, 'response_received' => false, 'elapsed_time' => total_time } |