diff --git a/misc/config_tools/library/scenario_cfg_lib.py b/misc/config_tools/library/scenario_cfg_lib.py index 60ea111b6..f1c950bb6 100644 --- a/misc/config_tools/library/scenario_cfg_lib.py +++ b/misc/config_tools/library/scenario_cfg_lib.py @@ -361,7 +361,7 @@ def vm_cpu_affinity_check(scenario_file, cpu_affinity): for vm_i,cpu in cpu_affinity.items(): if cpu is not None and cpu in use_cpus and not cpu_sharing_enabled: key = "vm:id={},{}".format(vm_i, 'pcpu_id') - err_dic[key] = "The same pcpu was configurated in /, but CPU sharing is disabled by 'SCHED_NOOP'. Please re-configurate them!" + err_dic[key] = "The same pCPU was configured in /, but CPU sharing is disabled by 'SCHED_NOOP'. Please enable CPU sharing or update your CPU affinity configuration." return err_dic else: use_cpus.append(cpu)