@@ -321,10 +321,14 @@ def _get_group_params(self, location):
321
321
class_name = _class_name , method_name = _method_name )
322
322
else :
323
323
group_param_name = attributes [wlst_subdeployment ]
324
- _logger .finer ('WLSDPLY-06487' , group_param_name , self ._alias_helper .get_model_folder_path (location ),
325
- class_name = _class_name , method_name = _method_name )
326
- subfolder_result [group_param_name ] = OrderedDict ()
327
- self ._populate_model_parameters (subfolder_result [group_param_name ], location )
324
+ if group_param_name is None :
325
+ _logger .warning ('WLSDPLY-06486' , folder_name , self ._alias_helper .get_model_folder_path (location ),
326
+ class_name = _class_name , method_name = _method_name )
327
+ else :
328
+ _logger .finer ('WLSDPLY-06487' , group_param_name , self ._alias_helper .get_model_folder_path (location ),
329
+ class_name = _class_name , method_name = _method_name )
330
+ subfolder_result [group_param_name ] = OrderedDict ()
331
+ self ._populate_model_parameters (subfolder_result [group_param_name ], location )
328
332
location .remove_name_token (name_token )
329
333
location .pop_location ()
330
334
_logger .exiting (class_name = _class_name , method_name = _method_name , result = subfolder_result )
0 commit comments