diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2017-03-14 17:46:17 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-14 17:46:17 +0000 |
commit | 27fbeda9212642f3944a8984cafe9edf99da5b5a (patch) | |
tree | d5eb0a740a72d65870e9106e7b46cd3cbf104367 | |
parent | 368db9a60640055a44a1ab655d17423966617e3c (diff) | |
download | sos-27fbeda9212642f3944a8984cafe9edf99da5b5a.tar.gz |
[numa] fix copy spec list
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/numa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/numa.py b/sos/plugins/numa.py index dde8c612..edb649e2 100644 --- a/sos/plugins/numa.py +++ b/sos/plugins/numa.py @@ -44,8 +44,8 @@ class Numa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): numa_path = "/sys/devices/system/node" self.add_copy_spec([ - os.path.join(numa_path, "node*/meminfo") - os.path.join(numa_path, "node*/cpulist") + os.path.join(numa_path, "node*/meminfo"), + os.path.join(numa_path, "node*/cpulist"), os.path.join(numa_path, "node*/distance") ]) |