@automattic/vip 3.25.0 → 3.25.1
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.
|
@@ -218,6 +218,8 @@ services:
|
|
|
218
218
|
environment:
|
|
219
219
|
LANDO_NO_SCRIPTS: 1
|
|
220
220
|
LANDO_NEEDS_EXEC: 1
|
|
221
|
+
LANDO_HOST_UID: ${LANDO_HOST_USER_ID}
|
|
222
|
+
LANDO_HOST_GID: ${LANDO_HOST_GROUP_ID}
|
|
221
223
|
volumes:
|
|
222
224
|
mu-plugins: {}
|
|
223
225
|
initOnly: true
|
|
@@ -237,6 +239,9 @@ services:
|
|
|
237
239
|
- clientcode_private:/clientcode/private
|
|
238
240
|
- clientcode_themes:/clientcode/themes
|
|
239
241
|
- clientcode_vipconfig:/clientcode/vip-config
|
|
242
|
+
environment:
|
|
243
|
+
LANDO_HOST_UID: ${LANDO_HOST_USER_ID}
|
|
244
|
+
LANDO_HOST_GID: ${LANDO_HOST_GROUP_ID}
|
|
240
245
|
volumes:
|
|
241
246
|
clientcode_clientmuPlugins: {}
|
|
242
247
|
clientcode_images: {}
|
|
@@ -115,7 +115,7 @@ class DevEnvImportSQLCommand {
|
|
|
115
115
|
if (!dumpDetails.sourceDb) {
|
|
116
116
|
console.log(`${_chalk.default.yellow('!')} Unable to identify source DB. Skipping myloader source-db option`);
|
|
117
117
|
}
|
|
118
|
-
importArg = ['db-myloader', '--overwrite-tables', ...(dumpDetails.sourceDb ? [`--source-db=${dumpDetails.sourceDb}`] : []), `--threads=${threadCount}`, '--max-threads-for-schema-creation=10', '--max-threads-for-index-creation=10', '--skip-triggers', '--skip-post', '--
|
|
118
|
+
importArg = ['db-myloader', '--overwrite-tables', ...(dumpDetails.sourceDb ? [`--source-db=${dumpDetails.sourceDb}`] : []), `--threads=${threadCount}`, '--max-threads-for-schema-creation=10', '--max-threads-for-index-creation=10', '--skip-triggers', '--skip-post', '--optimize-keys', '--checksum=SKIP', '--metadata-refresh-interval=2000000', '--stream'].concat(this.options.quiet ? ['--verbose=0'] : ['--verbose=3']);
|
|
119
119
|
}
|
|
120
120
|
return importArg;
|
|
121
121
|
}
|
|
@@ -36,4 +36,4 @@ const DEV_ENVIRONMENT_DEFAULTS = exports.DEV_ENVIRONMENT_DEFAULTS = {
|
|
|
36
36
|
multisite: false,
|
|
37
37
|
phpVersion: Object.keys(DEV_ENVIRONMENT_PHP_VERSIONS)[0]
|
|
38
38
|
};
|
|
39
|
-
const DEV_ENVIRONMENT_VERSION = exports.DEV_ENVIRONMENT_VERSION = '2.3.
|
|
39
|
+
const DEV_ENVIRONMENT_VERSION = exports.DEV_ENVIRONMENT_VERSION = '2.3.3';
|