Skip to content
Snippets Groups Projects
Commit 487817bf authored by Alexander Rose's avatar Alexander Rose
Browse files

increase timeout

parent 8802f518
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ export namespace StructureQualityReport {
if (model.customProperties.has(Descriptor)) return true;
const id = model.label.toLowerCase();
const rawData = await fetch(`https://www.ebi.ac.uk/pdbe/api/validation/residuewise_outlier_summary/entry/${model.label.toLowerCase()}`, { timeout: 500 });
const rawData = await fetch(`https://www.ebi.ac.uk/pdbe/api/validation/residuewise_outlier_summary/entry/${model.label.toLowerCase()}`, { timeout: 1500 });
const json = await rawData.json();
const data = json[id];
if (!data) return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment