From f748ceba1a79461c04ccb01282aa31d4c11660df Mon Sep 17 00:00:00 2001 From: Jelle Siderius Date: Wed, 9 Aug 2023 11:20:54 +0200 Subject: [PATCH] Release 1.2.3 --- dist/tasks/magentoConfigureTask.js | 2 +- package-lock.json | 2 +- package.json | 2 +- src/tasks/magentoConfigureTask.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/tasks/magentoConfigureTask.js b/dist/tasks/magentoConfigureTask.js index 95c0c0a..7ae9366 100644 --- a/dist/tasks/magentoConfigureTask.js +++ b/dist/tasks/magentoConfigureTask.js @@ -105,7 +105,7 @@ class MagentoConfigureTask { this.configureTasks.push({ title: 'Configuring cache', task: () => tslib_1.__awaiter(this, void 0, void 0, function* () { - yield (0, console_1.localhostMagentoRootExec)(`${config.settings.magerun2CommandLocal} config:store:set system/full_page_cache/caching_application 2`, config); + yield (0, console_1.localhostMagentoRootExec)(`${config.settings.magerun2CommandLocal} config:store:set system/full_page_cache/caching_application 1`, config); }) }); this.configureTasks.push({ diff --git a/package-lock.json b/package-lock.json index c75ed7d..ee61c34 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mage-db-sync", - "version": "1.2.2", + "version": "1.2.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index c2697e9..c4bffca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mage-db-sync", - "version": "1.2.2", + "version": "1.2.3", "description": "Database synchronizer for Magento, based on Magerun", "author": { "name": "Jelle Siderius" diff --git a/src/tasks/magentoConfigureTask.ts b/src/tasks/magentoConfigureTask.ts index e39c173..c8cad16 100644 --- a/src/tasks/magentoConfigureTask.ts +++ b/src/tasks/magentoConfigureTask.ts @@ -166,7 +166,7 @@ class MagentoConfigureTask { { title: 'Configuring cache', task: async (): Promise => { - await localhostMagentoRootExec(`${config.settings.magerun2CommandLocal} config:store:set system/full_page_cache/caching_application 2`, config); + await localhostMagentoRootExec(`${config.settings.magerun2CommandLocal} config:store:set system/full_page_cache/caching_application 1`, config); } } );