Skip to content

GitLab Next

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
GitLab
GitLab
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 36,969
    • Issues 36,969
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
    • Iterations
  • Merge requests 1,432
    • Merge requests 1,432
  • Requirements
    • Requirements
    • List
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Operations
    • Operations
    • Metrics
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • CI/CD
    • Code Review
    • Insights
    • Issue
    • Repository
    • Value Stream
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • GitLab.org
  • GitLabGitLab
  • Merge requests
  • !54614

Merged
Created Feb 18, 2021 by Alexandru Croitor@acroitorDeveloper1 of 13 tasks completed1/13 tasks

Reset templates cache key

  • Overview 10
  • Commits 1
  • Pipelines 3
  • Changes 6

What does this MR do?

This resets description templates cache key, thus making templates being reloaded and recached with the correct format. The problem appeared when we deployed !52360 (merged) (merged) where we should have changed the cache key as here we are filtering templates by project_id which is not yet present in the returned hash introduced in !52222 (diffs) but there the project_id is always nil

Here is a production snippet run for Gitlab project

repository_cache = Gitlab::RepositoryCache.new(Project.find(278964).repository)
repository_cache.fetch(:merge_request_template_names_by_category)

=>   { 
    "" =>[
      {:name=>"Change Documentation Location", :id=>"Change Documentation Location", :key=>"Change Documentation Location", :project_id=>nil}, 
      {:name=>"Documentation", :id=>"Documentation", :key=>"Documentation", :project_id=>nil}, 
      {:name=>"New End To End Test", :id=>"New End To End Test", :key=>"New End To End Test", :project_id=>nil}, 
      {:name=>"New Static Analysis Check", :id=>"New Static Analysis Check", :key=>"New Static Analysis Check", :project_id=>nil}, 
      {:name=>"Security Release", :id=>"Security Release", :key=>"Security Release", :project_id=>nil}
    ]
  }

You can note the :project_id=>nil in the result, which makes the list of templates to be empty.

#322078 (closed)

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

  • Changelog entry
  • Documentation (if required)
  • Code review guidelines
  • Merge request performance guidelines
  • Style guides
  • Database guides
  • Separation of EE specific content

Availability and Testing

  • Review and add/update tests for this feature/bug. Consider all test levels. See the Test Planning Process.
  • Tested in all supported browsers
  • Informed Infrastructure department of a default or new setting change, if applicable per definition of done

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited Feb 19, 2021 by Alexandru Croitor
Assignee
Assign to
Reviewer
Request review from
13.10
Milestone
13.10 (Past due)
Assign milestone
Time tracking
Source branch: reset_template_cache_key