From 734667367df32f57e4a2fc0b6b44abf0414c4cf5 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Tue, 31 May 2022 14:03:21 -0700 Subject: [PATCH] Fix retrieval of group ID from log file for group chat --- basice2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basice2e/run.sh b/basice2e/run.sh index 81ffe88..da3f65b 100755 --- a/basice2e/run.sh +++ b/basice2e/run.sh @@ -949,7 +949,7 @@ wait $PIDVAL2 wait $PIDVAL3 # Extract group ID -- Note to Jono this probably needs to be fixed! -GROUPID=$(cat $CLIENTOUT/client80.log | grep -a "NewGroupID\:" | awk -F' ' '{print $5}') +GROUPID=$(cat $CLIENTOUT/client80.log | grep -a "NewGroupID\:" | awk -F' ' '{print $6}') echo "Group ID: $GROUPID" # Print the group list from all users -- GitLab