add timeout to maintainer request

Этот коммит содержится в:
AJ ONeal 2020-04-21 00:04:47 -06:00
родитель d10482697b
Коммит 569c922eb0
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,7 @@ M._init = function(me, tz, locale) {
setTimeout(function() {
// prevent a stampede from misconfigured clients in an eternal loop
me.request({
timeout: 3000,
method: 'GET',
url: 'https://api.rootprojects.org/api/nonce',
json: true
@ -47,6 +48,7 @@ M._init = function(me, tz, locale) {
})
.then(function(hashcash) {
var req = {
timeout: 3000,
headers: {
'x-root-nonce-v1': hashcash
},