Fix issue #3407367
1 unresolved thread
1 unresolved thread
Closes #3407367
Merge request reports
Activity
202 197 // from filling the disk, while still serving aggregates that may be 203 198 // referenced in cached HTML. 204 199 if (hash_equals($generated_hash, $received_hash)) { 205 $this->dumper->dumpToUri($data, $this->assetType, $uri); 200 $headers = [ 201 'Cache-control' => static::CACHE_CONTROL, 202 'Content-Type' => $this->contentType, 203 ]; 204 $uri = $this->dumper->dumpToUri($data, $this->assetType, $uri); 205 if (file_exists($uri . '.gz')) {
Please register or sign in to reply