in hq/app/services/CacheService.scala [59:72]
def getPublicBucketsForAccount(
awsAccount: AwsAccount
): Either[FailedAttempt, List[BucketDetail]] = {
publicBucketsBox
.get()
.getOrElse(
awsAccount,
Left(
Failure
.cacheServiceErrorPerAccount(awsAccount.id, "public buckets")
.attempt
)
)
}