diff --git a/perfkitbenchmarker/linux_benchmarks/multichase_benchmark.py b/perfkitbenchmarker/linux_benchmarks/multichase_benchmark.py index 4251577f0a..878d985525 100644 --- a/perfkitbenchmarker/linux_benchmarks/multichase_benchmark.py +++ b/perfkitbenchmarker/linux_benchmarks/multichase_benchmark.py @@ -279,7 +279,7 @@ def Run(benchmark_spec): base_metadata['numactl_options'] = FLAGS.multichase_numactl_options multichase_path = posixpath.join(vm_state.multichase_dir, 'multichase') - base_cmd.extend((multichase_path, '-a', '-v')) + base_cmd.extend((multichase_path, '-a', '-v', '-H')) chase_type = FLAGS.multichase_chase_type if _CHASES[chase_type]: diff --git a/perfkitbenchmarker/linux_packages/multichase.py b/perfkitbenchmarker/linux_packages/multichase.py index c9f493990e..05bc9db024 100644 --- a/perfkitbenchmarker/linux_packages/multichase.py +++ b/perfkitbenchmarker/linux_packages/multichase.py @@ -16,7 +16,7 @@ """Module containing multichase installation and cleanup functions.""" GIT_PATH = 'https://github.com/google/multichase' -GIT_VERSION = 'ebd614435f9d510963c5568d840ff647ca8e3701' +GIT_VERSION = '6188a9fba4cc2edd736e8082aa8911686ae6bc66' INSTALL_PATH = 'multichase'