Skip to content

Commit

Permalink
fix: reset delay after request
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhendumadhukar committed Oct 26, 2022
1 parent ed6855e commit 8fcf41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/HttpParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export class HttpParser {
}

response.status = parseFloat((<unknown>response.status) as string);
DELAY = 0;
return response;
};
/**
Expand Down Expand Up @@ -267,7 +268,6 @@ export class HttpParser {
}
PARSE_BODY = false;
responseBody = "";
DELAY = 0;
}
}
return response;
Expand Down

0 comments on commit 8fcf41e

Please sign in to comment.