fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
@@ -96,9 +96,9 @@ final readonly class ExceptionCorrelationEngine
|
||||
private function getCorrelation(CacheKey $cacheKey): ExceptionCorrelation
|
||||
{
|
||||
$result = $this->cache->get($cacheKey);
|
||||
$item = $result->getFirstHit();
|
||||
$item = $result->getItem($cacheKey);
|
||||
|
||||
if ($item === null) {
|
||||
if (!$item->isHit) {
|
||||
return new ExceptionCorrelation(correlationKey: '');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user