@backstage/create-app 0.0.0-nightly-20220409023050 → 0.0.0-nightly-20220412023410
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/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/create-app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20220412023410
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
/* ... */
|
|
106
106
|
|
|
107
107
|
+ const schedule = env.scheduler.createScheduledTaskRunner({
|
|
108
|
-
+ frequency: Duration.fromObject({
|
|
109
|
-
+ timeout: Duration.fromObject({
|
|
108
|
+
+ frequency: Duration.fromObject({ minutes: 10 }),
|
|
109
|
+
+ timeout: Duration.fromObject({ minutes: 15 }),
|
|
110
110
|
+ initialDelay: Duration.fromObject({ seconds: 3 }),
|
|
111
111
|
+ });
|
|
112
112
|
|
package/package.json
CHANGED
|
@@ -33,8 +33,8 @@ export default async function createPlugin(
|
|
|
33
33
|
});
|
|
34
34
|
|
|
35
35
|
const schedule = env.scheduler.createScheduledTaskRunner({
|
|
36
|
-
frequency: Duration.fromObject({
|
|
37
|
-
timeout: Duration.fromObject({
|
|
36
|
+
frequency: Duration.fromObject({ minutes: 10 }),
|
|
37
|
+
timeout: Duration.fromObject({ minutes: 15 }),
|
|
38
38
|
// A 3 second delay gives the backend server a chance to initialize before
|
|
39
39
|
// any collators are executed, which may attempt requests against the API.
|
|
40
40
|
initialDelay: Duration.fromObject({ seconds: 3 }),
|