diff options
| author | 2023-02-06 14:11:41 +0100 | |
|---|---|---|
| committer | 2023-02-06 14:11:41 +0100 | |
| commit | de2077b56388c5196d5c1ddcbbd4a141ea8cf67b (patch) | |
| tree | d0c81ff2bdd76f85c7693c6cf3efc42f34537549 /app/views/subscription | |
| parent | 40aa8b9264f1918cb48a0e2f6fc00455181a004a (diff) | |
Increase max HTTP timeout (#5074)
* Increase maximum HTTP request timeout from 2 minutes to 15 minutes;
* Reason: I have some RSS Bridge generating feeds, which can take several minutes.
* Increase default HTTP request timeout from 15 to 20s.
* Reason: I regularly observe feeds, which are slow to answer.
Diffstat (limited to 'app/views/subscription')
| -rw-r--r-- | app/views/subscription/add.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/subscription/add.phtml b/app/views/subscription/add.phtml index 212574002..7fa59e751 100644 --- a/app/views/subscription/add.phtml +++ b/app/views/subscription/add.phtml @@ -237,7 +237,7 @@ <div class="form-group"> <label class="group-name" for="timeout"><?= _t('sub.feed.timeout') ?></label> <div class="group-controls"> - <input type="number" name="timeout" id="timeout" min="3" max="120" value="" placeholder="<?= _t('gen.short.by_default') ?>" /> + <input type="number" name="timeout" id="timeout" min="3" max="900" value="" placeholder="<?= _t('gen.short.by_default') ?>" /> </div> </div> |
