From: Michal Fojtik <[email protected]> * This should fix DTACLOUD-311
Signed-off-by: Michal fojtik <[email protected]> --- server/lib/cimi/models/schema.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/server/lib/cimi/models/schema.rb b/server/lib/cimi/models/schema.rb index 088e111..a7dc0f2 100644 --- a/server/lib/cimi/models/schema.rb +++ b/server/lib/cimi/models/schema.rb @@ -140,11 +140,9 @@ class CIMI::Model::Schema def struct cname = "CIMI_#{json_name.upcase_first}" if ::Struct.const_defined?(cname) - ::Struct.const_get(cname) - else - ::Struct.new("CIMI_#{json_name.upcase_first}", - *@schema.attribute_names) + ::Struct.send(:remove_const, "CIMI_#{json_name.upcase_first}") end + ::Struct.new("CIMI_#{json_name.upcase_first}", *@schema.attribute_names) end end -- 1.7.10.2
