craftcms / aws-s3

Amazon S3 volume type for Craft CMS.
https://plugins.craftcms.com/aws-s3
MIT License
61 stars 28 forks source link

fix: correctly cache the cacheDuration for AWS credentials #156

Closed Zae closed 1 year ago

Zae commented 1 year ago

$cacheDuration > 0 ?: static::CACHE_DURATION_SECONDS will result in 1, which is not what we want out of this ternary statement.

By replacing the or ternary with a regular ternary we get the results that we want 3600.

Description

Same fix as #152 but for v2 of aws-s3, see #153

Related issues

152