-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✅ Automated fault tolerance #998
Conversation
|
@@ -128,7 +128,7 @@ | |||
|
|||
const issuerIndex = __ITER % numIssuers; | |||
const issuer = issuers[issuerIndex]; | |||
const revokeCredentialResponse = revokeCredential(issuer.accessToken, id.credential_exchange_id); | |||
const revokeCredentialResponse = revokeCredentialAutoPubish(issuer.accessToken, id.credential_exchange_id); |
Check warning
Code scanning / Eslint (reported by Codacy)
'revokeCredentialAutoPubish' is not defined. Warning
|
||
ha_tests() { | ||
local test_stack="$1" | ||
for ((i=1; i<=$HA_TEST_ITERATIONS; i++)); do |
Check warning
Code scanning / Shellcheck (reported by Codacy)
$/${} is unnecessary on arithmetic variables. Warning
fi | ||
|
||
if [ -n "$STACK" ]; then | ||
$SCRIPT_DIR/ha_revocation.sh -s "$STACK" |
Check notice
Code scanning / Shellcheck (reported by Codacy)
Double quote to prevent globbing and word splitting. Note
$SCRIPT_DIR/ha_revocation.sh -s "$STACK" | ||
elif [ "$TEST_ALL" = true ]; then | ||
for stack in WEBS AGENT SERVICE AUTH; do | ||
$SCRIPT_DIR/ha_revocation.sh -s "$stack" |
Check notice
Code scanning / Shellcheck (reported by Codacy)
Double quote to prevent globbing and word splitting. Note
No description provided.