in hq/app/services/CacheService.scala [78:91]
def getCredentialsForAccount(
awsAccount: AwsAccount
): Either[FailedAttempt, CredentialReportDisplay] = {
credentialsBox
.get()
.getOrElse(
awsAccount,
Left(
Failure
.cacheServiceErrorPerAccount(awsAccount.id, "credentials")
.attempt
)
)
}