mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 09:02:12 +00:00 
			
		
		
		
	Fix: properly handle core_names and core_clusters in the agenda
Keep duplicates in lists when merging device_config dict from agenda with the rest of the config; This will ensure that core_name sand core_clusters aren't reduced to just unique elements.
This commit is contained in:
		@@ -676,7 +676,8 @@ class RunConfiguration(object):
 | 
			
		||||
    def _finalize_device_config(self):
 | 
			
		||||
        self._load_default_config_if_necessary(self.device)
 | 
			
		||||
        config = _merge_config_dicts(self._raw_config.get(self.device),
 | 
			
		||||
                                     self._raw_config.get('device_config', {}))
 | 
			
		||||
                                     self._raw_config.get('device_config', {}),
 | 
			
		||||
                                     list_duplicates='all')
 | 
			
		||||
        self.device_config = config
 | 
			
		||||
 | 
			
		||||
    def _load_default_config_if_necessary(self, name):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user