This commit is contained in:
Henri Maurer
2023-06-09 10:30:56 +01:00
parent 66b6f67835
commit 50954e6a9a
3 changed files with 3 additions and 3 deletions
Generated Vendored
+1 -1
View File
@@ -500,7 +500,7 @@ function getComparison(baseRef, headRef, retryOpts) {
});
if (retryOpts !== undefined &&
comparison.snapshot_warnings.trim() !== '' &&
retryOpts.retryUntil < Date.now()) {
retryOpts.retryUntil > Date.now()) {
core.info(comparison.snapshot_warnings);
core.info(`Retrying in ${retryOpts.retryDelay} seconds...`);
yield delay(retryOpts.retryDelay * 1000);
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -38,7 +38,7 @@ async function getComparison(
if (
retryOpts !== undefined &&
comparison.snapshot_warnings.trim() !== '' &&
retryOpts.retryUntil < Date.now()
retryOpts.retryUntil > Date.now()
) {
core.info(comparison.snapshot_warnings)
core.info(`Retrying in ${retryOpts.retryDelay} seconds...`)