2019-09-30 21:07:59 +05:30
|
|
|
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-realtime-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-05-09 12:01:36 +05:30
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
2018-11-18 11:00:15 +05:30
|
|
|
= f.label :polling_interval_multiplier, 'Polling interval multiplier', class: 'label-bold'
|
2018-11-08 19:23:39 +05:30
|
|
|
= f.text_field :polling_interval_multiplier, class: 'form-control'
|
|
|
|
.form-text.text-muted
|
|
|
|
Change this value to influence how frequently the GitLab UI polls for updates.
|
|
|
|
If you set the value to 2 all polling intervals are multiplied
|
|
|
|
by 2, which means that polling happens half as frequently.
|
|
|
|
The multiplier can also have a decimal value.
|
|
|
|
The default value (1) is a reasonable choice for the majority of GitLab
|
|
|
|
installations. Set to 0 to completely disable polling.
|
|
|
|
= link_to icon('question-circle'), help_page_path('administration/polling')
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
= f.submit 'Save changes', class: "btn btn-success"
|
|
|
|
|