Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4b027bc9
Commit
4b027bc9
authored
Jan 04, 2016
by
Douwe Maan
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add DEBUG_BANZAI_CACHE env var to debug Banzai cache issue.
parent
b9ec1aae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
lib/banzai/renderer.rb
lib/banzai/renderer.rb
+14
-7
No files found.
lib/banzai/renderer.rb
View file @
4b027bc9
module
Banzai
module
Renderer
CACHE_ENABLED
=
false
# Convert a Markdown String into an HTML-safe String of HTML
#
# Note that while the returned HTML will have been sanitized of dangerous
...
...
@@ -20,13 +18,22 @@ module Banzai
cache_key
=
context
.
delete
(
:cache_key
)
cache_key
=
full_cache_key
(
cache_key
,
context
[
:pipeline
])
if
cache_key
&&
CACHE_ENABLED
Rails
.
cache
.
fetch
(
cache_key
)
do
cacheless_render
(
text
,
context
)
cacheless
=
cacheless_render
(
text
,
context
)
if
cache_key
&&
ENV
[
"DEBUG_BANZAI_CACHE"
]
cached
=
Rails
.
cache
.
fetch
(
cache_key
)
{
cacheless
}
if
cached
!=
cacheless
Rails
.
logger
.
warn
"Banzai cache mismatch"
Rails
.
logger
.
warn
"Text:
#{
text
.
inspect
}
"
Rails
.
logger
.
warn
"Context:
#{
context
.
inspect
}
"
Rails
.
logger
.
warn
"Cache key:
#{
cache_key
.
inspect
}
"
Rails
.
logger
.
warn
"Cacheless:
#{
cacheless
.
inspect
}
"
Rails
.
logger
.
warn
"With cache:
#{
cached
.
inspect
}
"
end
else
cacheless_render
(
text
,
context
)
end
cacheless
end
def
self
.
render_result
(
text
,
context
=
{})
...
...
Kirill Smelkov
@kirr
mentioned in commit
b9ed3961
·
Feb 02, 2016
mentioned in commit
b9ed3961
mentioned in commit b9ed3961b55cf3dbc1a6d4c841d295dd23161c90
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment