jira-sprinter 2.4.1 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +3 -3
- package/package.json +1 -1
- package/src/auto.ts +2 -2
package/dist/main.js
CHANGED
|
@@ -66162,9 +66162,9 @@ async function setDueDateOnSplitTask(jira, parentKey, taskName, summaryPrefix, d
|
|
|
66162
66162
|
await jira.setDueDate(splitTask.key, dueDate);
|
|
66163
66163
|
return;
|
|
66164
66164
|
}
|
|
66165
|
-
if (attempt <
|
|
66165
|
+
if (attempt < 15) {
|
|
66166
66166
|
logger.log(source_default.dim(` Waiting for ${taskName} on ${parentKey}...`));
|
|
66167
|
-
await new Promise((resolve) => setTimeout(resolve,
|
|
66167
|
+
await new Promise((resolve) => setTimeout(resolve, 1e4));
|
|
66168
66168
|
}
|
|
66169
66169
|
}
|
|
66170
66170
|
logger.log(
|
|
@@ -66348,7 +66348,7 @@ var issueStatusSchema = external_exports.union([
|
|
|
66348
66348
|
});
|
|
66349
66349
|
|
|
66350
66350
|
// package.json
|
|
66351
|
-
var version3 = "2.4.
|
|
66351
|
+
var version3 = "2.4.2";
|
|
66352
66352
|
|
|
66353
66353
|
// src/cli.ts
|
|
66354
66354
|
function cli() {
|
package/package.json
CHANGED
package/src/auto.ts
CHANGED
|
@@ -295,9 +295,9 @@ async function setDueDateOnSplitTask(
|
|
|
295
295
|
return;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
|
-
if (attempt <
|
|
298
|
+
if (attempt < 15) {
|
|
299
299
|
logger.log(chalk.dim(` Waiting for ${taskName} on ${parentKey}...`));
|
|
300
|
-
await new Promise(resolve => setTimeout(resolve,
|
|
300
|
+
await new Promise(resolve => setTimeout(resolve, 10000));
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
|