Browse Source

Wait for 3 seconds between attempts to allow time for data to arrive.

qdn
CalDescent 3 years ago
parent
commit
e74dcff010
  1. 2
      src/main/java/org/qortal/api/resource/ArbitraryResource.java

2
src/main/java/org/qortal/api/resource/ArbitraryResource.java

@ -477,6 +477,8 @@ public class ArbitraryResource {
// Give up after 5 attempts // Give up after 5 attempts
throw ApiExceptionFactory.INSTANCE.createCustomException(request, ApiError.INVALID_CRITERIA, "Data unavailable. Please try again later."); throw ApiExceptionFactory.INSTANCE.createCustomException(request, ApiError.INVALID_CRITERIA, "Data unavailable. Please try again later.");
} }
Thread.sleep(3000L);
continue; continue;
} }
} }

Loading…
Cancel
Save