2019-02-20 11:56:19 -05:00
|
|
|
= form_for @application_setting, url: preferences_admin_application_settings_path(anchor: 'js-realtime-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-04-04 05:44:32 -04:00
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
2018-06-13 03:40:55 -04:00
|
|
|
.form-group
|
2018-07-19 18:11:31 -04:00
|
|
|
= f.label :polling_interval_multiplier, 'Polling interval multiplier', class: 'label-bold'
|
2021-01-31 13:09:51 -05:00
|
|
|
= f.text_field :polling_interval_multiplier, class: 'form-control gl-form-input'
|
2018-06-13 03:40:55 -04:00
|
|
|
.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.
|
2020-09-11 14:08:42 -04:00
|
|
|
= link_to sprite_icon('question-o'), help_page_path('administration/polling')
|
2018-04-04 05:44:32 -04:00
|
|
|
|
2020-10-14 11:08:42 -04:00
|
|
|
= f.submit 'Save changes', class: "gl-button btn btn-success"
|