From aec57dcff25c5db4c3ea66cc78ab89ad748f5fee Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Thu, 21 Sep 2023 15:06:15 -0500 Subject: [PATCH] Include full version in perf harness reports --- tests/TestHarness/testUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestHarness/testUtils.py b/tests/TestHarness/testUtils.py index c386953c4c..8e50c79cd6 100644 --- a/tests/TestHarness/testUtils.py +++ b/tests/TestHarness/testUtils.py @@ -612,4 +612,4 @@ def readSocketDataStr(sock : socket.socket, maxMsgSize : int, enc : str) -> str: @staticmethod def getNodeosVersion(): - return os.popen(f"{Utils.EosServerPath} --version").read().replace("\n", "") + return os.popen(f"{Utils.EosServerPath} --full-version").read().replace("\n", "")