do not fail if cannot get a token for a user in login w/ burnettk
This commit is contained in:
parent
a1f546ba16
commit
2fe0300b81
|
@ -28,7 +28,7 @@ REALM_NAME=${2-spiffworkflow}
|
||||||
while read -r input_line; do
|
while read -r input_line; do
|
||||||
if ! grep -qE '(^#|email)' <<<"$input_line" ; then
|
if ! grep -qE '(^#|email)' <<<"$input_line" ; then
|
||||||
username=$(awk -F '@' '{print $1}' <<<"$input_line")
|
username=$(awk -F '@' '{print $1}' <<<"$input_line")
|
||||||
access_token=$("${script_dir}/get_token" "$username" "$username" "$REALM_NAME")
|
access_token=$("${script_dir}/get_token" "$username" "$username" "$REALM_NAME" || echo '')
|
||||||
if [[ -z "$access_token" || "$access_token" == "null" ]]; then
|
if [[ -z "$access_token" || "$access_token" == "null" ]]; then
|
||||||
>&2 echo "ERROR: failed to get access token for '$username'"
|
>&2 echo "ERROR: failed to get access token for '$username'"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue