abmp-npm 1.10.9 → 1.10.11

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.
@@ -95,7 +95,7 @@ const TASKS = {
95
95
  getIdentifier: () => 'SHOULD_NEVER_SKIP',
96
96
  process: updateSiteMapS3,
97
97
  shouldSkipCheck: () => false,
98
- estimatedDurationSec: 90,
98
+ estimatedDurationSec: 70,
99
99
  },
100
100
  [TASKS_NAMES.scheduleContactFormEmailMigration]: {
101
101
  name: TASKS_NAMES.scheduleContactFormEmailMigration,
@@ -130,11 +130,11 @@ const TASKS = {
130
130
  getIdentifier: () => 'SHOULD_NEVER_SKIP',
131
131
  process: scheduleMigrateExistingUrls,
132
132
  shouldSkipCheck: () => false,
133
- estimatedDurationSec: 160,
133
+ estimatedDurationSec: 80,
134
134
  },
135
135
  [TASKS_NAMES.migrateUrlsChunk]: {
136
136
  name: TASKS_NAMES.migrateUrlsChunk,
137
- getIdentifier: task => `chunk-${task.data.chunkIndex}`,
137
+ getIdentifier: task => task.data,
138
138
  process: migrateUrlsChunk,
139
139
  shouldSkipCheck: () => false,
140
140
  estimatedDurationSec: 80,
@@ -144,11 +144,11 @@ const TASKS = {
144
144
  getIdentifier: () => 'SHOULD_NEVER_SKIP',
145
145
  process: scheduleGenerateMissingUrls,
146
146
  shouldSkipCheck: () => false,
147
- estimatedDurationSec: 160,
147
+ estimatedDurationSec: 80,
148
148
  },
149
149
  [TASKS_NAMES.generateUrlsChunk]: {
150
150
  name: TASKS_NAMES.generateUrlsChunk,
151
- getIdentifier: task => `chunk-${task.data.chunkIndex}`,
151
+ getIdentifier: task => task.data,
152
152
  process: generateUrlsChunk,
153
153
  shouldSkipCheck: () => false,
154
154
  estimatedDurationSec: 80,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abmp-npm",
3
- "version": "1.10.9",
3
+ "version": "1.10.11",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "check-cycles": "madge --circular .",