Unset SD gen timeout
This commit is contained in:
parent
b24509ef43
commit
cb8d9ac71b
|
@ -165,6 +165,7 @@ function registerEndpoints(app, jsonParser) {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': getBasicAuthHeader(request.body.auth),
|
'Authorization': getBasicAuthHeader(request.body.auth),
|
||||||
},
|
},
|
||||||
|
timeout: 0,
|
||||||
});
|
});
|
||||||
const data = await result.json();
|
const data = await result.json();
|
||||||
return data;
|
return data;
|
||||||
|
@ -184,6 +185,7 @@ function registerEndpoints(app, jsonParser) {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'Authorization': getBasicAuthHeader(request.body.auth),
|
'Authorization': getBasicAuthHeader(request.body.auth),
|
||||||
},
|
},
|
||||||
|
timeout: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!result.ok) {
|
if (!result.ok) {
|
||||||
|
@ -227,6 +229,7 @@ function registerEndpoints(app, jsonParser) {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'Authorization': getBasicAuthHeader(request.body.auth),
|
'Authorization': getBasicAuthHeader(request.body.auth),
|
||||||
},
|
},
|
||||||
|
timeout: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!result.ok) {
|
if (!result.ok) {
|
||||||
|
|
Loading…
Reference in New Issue