From ba6a699b1d6904d83a9259e167d6354802d84061 Mon Sep 17 00:00:00 2001 From: Walter Alves Date: Fri, 7 Apr 2017 11:25:31 -0300 Subject: [PATCH] Remove method "name" from physical_server The method named "name" was causing inconsistency when A physical server is showing in UI and in RES API. --- .../providers/lenovo/physical_infra_manager/physical_server.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/models/manageiq/providers/lenovo/physical_infra_manager/physical_server.rb b/app/models/manageiq/providers/lenovo/physical_infra_manager/physical_server.rb index b482520226..b4e97d30ab 100644 --- a/app/models/manageiq/providers/lenovo/physical_infra_manager/physical_server.rb +++ b/app/models/manageiq/providers/lenovo/physical_infra_manager/physical_server.rb @@ -1,7 +1,4 @@ module ManageIQ::Providers class Lenovo::PhysicalInfraManager::PhysicalServer < ::PhysicalServer - def name - "physical_server" - end end end