Skip to content
Snippets Groups Projects

Fix issue #3407367

1 unresolved thread

Closes #3407367

Merge request reports

Members who can merge are allowed to add commits.
Approval is optional
Code Quality is loading
Test summary results are being parsed
Ready to merge by members who can write to the target branch.
  • The source branch is 819 commits behind the target branch.
  • 1 commit will be added to 11.x.
  • Source branch will not be deleted.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
Loading