mirror of
https://github.com/nick-fields/retry.git
synced 2026-02-11 07:35:26 +00:00
fix: allow timeout_seconds to be less than retry_wait_time
This commit is contained in:
3
dist/index.js
vendored
3
dist/index.js
vendored
@@ -292,9 +292,6 @@ function validateInputs() {
|
||||
if ((!TIMEOUT_MINUTES && !TIMEOUT_SECONDS) || (TIMEOUT_MINUTES && TIMEOUT_SECONDS)) {
|
||||
throw new Error('Must specify either timeout_minutes or timeout_seconds inputs');
|
||||
}
|
||||
if (TIMEOUT_SECONDS && TIMEOUT_SECONDS < RETRY_WAIT_SECONDS) {
|
||||
throw new Error("timeout_seconds " + TIMEOUT_SECONDS + "s less than retry_wait_seconds " + RETRY_WAIT_SECONDS + "s");
|
||||
}
|
||||
return [2 /*return*/];
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user