From b49fdce78429f65a20df2d7c7c9eb61fd15539f8 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Thu, 23 May 2019 18:53:24 +0200 Subject: Do not share a single Redcarpet::Markdown object across threads There are apparently thread-safety issues: https://github.com/vmg/redcarpet/pull/672 --- app/lib/formatter.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'app/lib/formatter.rb') diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index bdd372d3e..31cfc8220 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -349,8 +349,6 @@ class Formatter end def markdown_formatter - return @markdown_formatter if defined?(@markdown_formatter) - extensions = { autolink: true, no_intra_emphasis: true, @@ -375,7 +373,7 @@ class Formatter link_attributes: { target: '_blank', rel: 'nofollow noopener' }, }) - @markdown_formatter = Redcarpet::Markdown.new(renderer, extensions) + Redcarpet::Markdown.new(renderer, extensions) end def html_entities -- cgit