Browse Source

Increased timeout for SEARCH_QDN_RESOURCES from 10 to 30 seconds.

pull/126/head
CalDescent 1 year ago
parent
commit
f7e1f2fca8
  1. 4
      src/main/resources/q-apps/q-apps.js

4
src/main/resources/q-apps/q-apps.js

@ -448,6 +448,10 @@ function getDefaultTimeout(action) {
// User may take a long time to accept/deny the popup
return 60 * 60 * 1000;
case "SEARCH_QDN_RESOURCES":
// Searching for data can be slow, especially when metadata and statuses are also being included
return 30 * 1000;
case "FETCH_QDN_RESOURCE":
// Fetching data can take a while, especially if the status hasn't been checked first
return 60 * 1000;

Loading…
Cancel
Save