Skip to content

Commit

Permalink
Fix retry command
Browse files Browse the repository at this point in the history
Signed-off-by: DaveSys911 <[email protected]>
  • Loading branch information
DaveSys911 committed Mar 22, 2024
1 parent 8c788dc commit 258ef5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if [[ -z "${BRANCH:-""}" ]]; then
fi

function release_manager_login {
DRA_CREDS_SECRET=$(retry 5 vault kv get -field=data -format=json ${CI_DRA_ROLE_PATH})
DRA_CREDS_SECRET=$(retry -t 5 vault kv get -field=data -format=json ${CI_DRA_ROLE_PATH})
VAULT_ADDR_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.vault_addr')
VAULT_ROLE_ID_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.role_id')
VAULT_SECRET=$(echo ${DRA_CREDS_SECRET} | jq -r '.secret_id')
Expand Down

0 comments on commit 258ef5f

Please sign in to comment.