mirror of
https://github.com/strapi/strapi.git
synced 2025-09-19 21:38:05 +00:00
Merge branch 'main' of github.com:strapi/strapi into features/data-transfer
This commit is contained in:
commit
fcfb8f6e00
@ -49,7 +49,6 @@ module.exports = async ({ buildDestDir, forceBuild = true, optimization, srcDir
|
||||
})
|
||||
.then(() => {
|
||||
console.log('Admin UI built successfully');
|
||||
process.exit(0);
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err);
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
const { prop, isNil, isEmpty, isArray } = require('lodash/fp');
|
||||
|
||||
const { forEachAsync } = require('@strapi/utils');
|
||||
const { mapAsync } = require('@strapi/utils');
|
||||
const { getService } = require('../utils');
|
||||
|
||||
const isDialectMySQL = () => strapi.db.dialect.client === 'mysql';
|
||||
@ -41,7 +41,7 @@ const syncLocalizations = async (entry, { model }) => {
|
||||
};
|
||||
|
||||
// MySQL/MariaDB can cause deadlocks here if concurrency higher than 1
|
||||
await forEachAsync(entry.localizations, (localization) => updateLocalization(localization.id), {
|
||||
await mapAsync(entry.localizations, (localization) => updateLocalization(localization.id), {
|
||||
concurrency: isDialectMySQL() ? 1 : Infinity,
|
||||
});
|
||||
}
|
||||
@ -68,7 +68,7 @@ const syncNonLocalizedAttributes = async (entry, { model }) => {
|
||||
};
|
||||
|
||||
// MySQL/MariaDB can cause deadlocks here if concurrency higher than 1
|
||||
await forEachAsync(entry.localizations, (localization) => updateLocalization(localization.id), {
|
||||
await mapAsync(entry.localizations, (localization) => updateLocalization(localization.id), {
|
||||
concurrency: isDialectMySQL() ? 1 : Infinity,
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user