Skip to content

Commit

Permalink
Merge pull request #315 from Rajaneeshkumar/master
Browse files Browse the repository at this point in the history
v3.6.1
  • Loading branch information
ASaiAnudeep authored Feb 27, 2024
2 parents da2bbb5 + 488be32 commit a1e5c6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pactum",
"version": "3.6.0",
"version": "3.6.1",
"description": "REST API Testing Tool for all levels in a Test Pyramid",
"main": "./src/index.js",
"types": "./src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/models/Tosser.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class Tosser {
}
if (!noRetry) {
const scale = delay === 1000 ? 'second' : 'seconds';
log.debug(`Retrying request in ${delay / 1000} ${scale}`);
log.info(`Request retry initiated, waiting ${delay / 1000} ${scale} for attempt ${i + 1} of ${count}`);
await helper.sleep(delay);
this.response = await getResponse(this);
} else {
Expand Down

0 comments on commit a1e5c6d

Please sign in to comment.