You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nexpose.rb:1841:in initialize': undefined local variable or methodresponse' for Nexpose::SiteDeviceListing:0x007fce3315b9c8 (NameError)
Needs updating to:
BEFORE::
if(r.success)
respsonse.elements.each('SiteDeviceListingResponse/SiteDevices/device') do |d|
@devices.push(Device.new(d.attributes['id'],@site_id,d.attributes["address"],d.attributes["riskfactor"],d.attributes['riskscore']))
end
end
AFTER::
if(r.success)
r.res.elements.each('SiteDeviceListingResponse/SiteDevices/device') do |d|
@devices.push(Device.new(d.attributes['id'],@site_id,d.attributes["address"],d.attributes["riskfactor"],d.attributes['riskscore']))
end
end
The text was updated successfully, but these errors were encountered:
nexpose.rb:1841:in
initialize': undefined local variable or method
response' for Nexpose::SiteDeviceListing:0x007fce3315b9c8 (NameError)Needs updating to:
BEFORE::
AFTER::
The text was updated successfully, but these errors were encountered: