Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Oct 30, 2024
1 parent 6cc8b97 commit e7a8c57
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,13 @@ export default function apiKeyBackfillTests({ getService }: FtrProviderContext)
expect(e?.event?.outcome).to.eql('success');
}

// wait for all the api_key_pending_invalidation SOs to be deleted
await retry.try(async () => {
const results = await getApiKeysPendingInvalidation();
expect(results.length).to.eql(0);
return results;
});

// invoke the invalidate task
await runInvalidateTask();

Expand Down

0 comments on commit e7a8c57

Please sign in to comment.