diff options
author | Patrick Bajao <ebajao@gitlab.com> | 2019-06-05 20:06:37 +0800 |
---|---|---|
committer | Patrick Bajao <ebajao@gitlab.com> | 2019-06-05 20:06:41 +0800 |
commit | de21320db21e63db59cbba870ac23624a298214d (patch) | |
tree | 6521d0d8a0708524dba22dca217050a489150588 /lib | |
parent | 56d52340da0f8f15179b83f1206544a2590c22ff (diff) | |
download | gitlab-ce-de21320db21e63db59cbba870ac23624a298214d.tar.gz |
Remove requirement for id for #markdown_cache_key
It's not needed anymore as we require `#cache_key` instead.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/markdown_cache/redis/store.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/markdown_cache/redis/store.rb b/lib/gitlab/markdown_cache/redis/store.rb index 2d4a89d9f1c..0f954404808 100644 --- a/lib/gitlab/markdown_cache/redis/store.rb +++ b/lib/gitlab/markdown_cache/redis/store.rb @@ -43,9 +43,9 @@ module Gitlab end def markdown_cache_key - unless @subject.respond_to?(:id) + unless @subject.respond_to?(:cache_key) raise Gitlab::MarkdownCache::UnsupportedClassError, - "This class has no id to use for caching" + "This class has no cache_key to use for caching" end "markdown_cache:#{@subject.cache_key}" |