Closed Zae closed 1 year ago
$cacheDuration > 0 ?: static::CACHE_DURATION_SECONDS will result in 1, which is not what we want out of this ternary statement.
1
By replacing the or ternary with a regular ternary we get the results that we want 3600.
or ternary
3600
Same fix as #152 but for v2 of aws-s3, see #153
$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 want3600
.Description
Same fix as #152 but for v2 of aws-s3, see #153
Related issues
152