@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-20220409023050
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({ seconds: 600 }),
109
- + timeout: Duration.fromObject({ seconds: 900 }),
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/create-app",
3
3
  "description": "A CLI that helps you create your own Backstage app",
4
- "version": "0.0.0-nightly-20220409023050",
4
+ "version": "0.0.0-nightly-20220412023410",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -33,8 +33,8 @@ export default async function createPlugin(
33
33
  });
34
34
 
35
35
  const schedule = env.scheduler.createScheduledTaskRunner({
36
- frequency: Duration.fromObject({ seconds: 600 }),
37
- timeout: Duration.fromObject({ seconds: 900 }),
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 }),