fix: fix max api status calls increment

This commit is contained in:
Andrey Ponomarenko 2020-09-25 22:14:51 +03:00
parent 32e92f8a24
commit cfbef54217
1 changed files with 3 additions and 5 deletions

View File

@ -27,14 +27,12 @@ export const upload = async (props: ApiUploadProps, options: Options = {}) => {
// recursive status checks
const checkStatus = async (): Promise<ApiStatusResponse> => {
if (statusCallsCount > maxApiStatusCalls) throw new Error('max api calls exceeded');
const jobStatus = await fetchJobStatus({ token, job });
const { status, message } = jobStatus;
if (statusCallsCount > maxApiStatusCalls) {
statusCallsCount += 1;
throw new Error('max api calls exceeded');
}
statusCallsCount += 1;
onStatusProgress(status);
switch (status) {