summaryrefslogtreecommitdiff
path: root/app/workers/plugin_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/plugin_worker.rb')
-rw-r--r--app/workers/plugin_worker.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/workers/plugin_worker.rb b/app/workers/plugin_worker.rb
index 34a3c8d62ac..cebdf8d0017 100644
--- a/app/workers/plugin_worker.rb
+++ b/app/workers/plugin_worker.rb
@@ -5,5 +5,7 @@ class PluginWorker
def perform(file_name, data)
Gitlab::Plugin.execute(file_name, data)
+ rescue => e
+ Rails.logger.error("#{self.class}: #{e.message}")
end
end