Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorWes Gurney <wes_gurney@cable.comcast.com>2014-09-12 19:38:14 +0400
committerWes Gurney <wes_gurney@cable.comcast.com>2014-09-12 19:38:14 +0400
commit81a70bf5153bb9470e96dde05102afd397528cf0 (patch)
tree25ee372e8ac486e01810668414d813e6453b5450 /app
parentcbb44b9da3e7288200485caed7a9716013e34984 (diff)
Adding ability to configure webhook timeout via gitlab.yml
Diffstat (limited to 'app')
-rw-r--r--app/models/web_hook.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/web_hook.rb b/app/models/web_hook.rb
index 6cf0c1f683e..752eb8074ac 100644
--- a/app/models/web_hook.rb
+++ b/app/models/web_hook.rb
@@ -23,7 +23,7 @@ class WebHook < ActiveRecord::Base
default_value_for :merge_requests_events, false
# HTTParty timeout
- default_timeout 10
+ default_timeout Gitlab.config.gitlab.webhook_timeout
validates :url, presence: true,
format: { with: URI::regexp(%w(http https)), message: "should be a valid url" }