summaryrefslogtreecommitdiff
path: root/app/workers
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-27 18:08:38 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-27 18:08:38 +0200
commitf0a64399c1171d2757c8ce70a36517d556cd9233 (patch)
tree709e0caabebf31ac2530ab007b7c288345b4af11 /app/workers
parent2150b2cde2700a48095db4364d02f91c9b9a1456 (diff)
downloadgitlab-ce-f0a64399c1171d2757c8ce70a36517d556cd9233.tar.gz
Refactor plugin execution method
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/plugin_worker.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/workers/plugin_worker.rb b/app/workers/plugin_worker.rb
index cebdf8d0017..34a3c8d62ac 100644
--- a/app/workers/plugin_worker.rb
+++ b/app/workers/plugin_worker.rb
@@ -5,7 +5,5 @@ class PluginWorker
def perform(file_name, data)
Gitlab::Plugin.execute(file_name, data)
- rescue => e
- Rails.logger.error("#{self.class}: #{e.message}")
end
end