Removed Token Logging from Test Script

- Replaced the logged token in the test script with a md5sum.
   The md5sum can be used for comparison but will not be the token.

Change-Id: I8a8f0751f032413590648ad57fb0b0563b167c78
This commit is contained in:
Aaron Sheffield 2018-04-23 13:46:05 -05:00
parent c1e7a74c1e
commit 05e51de7aa
1 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,8 @@ for NAME in "${NODES[@]}"; do
log Failed to get keystone token, exiting.
exit 1
fi
log "Got keystone token: ${TOKEN}"
TOKEN_HASH=$(echo -n ${TOKEN} | md5sum)
log "Got keystone token, token md5sum: ${TOKEN_HASH}"
CURL_ARGS+=("-H" "X-Auth-Token: ${TOKEN}")
fi