I’m trying to enable asynchronous orders in Magento 2.4.7 Community Edition using the command mentioned in the documentation:
bin/magento setup:config:set --checkout-async 1
However, I get the following error:
The "--checkout-async" option does not exist.
I have checked the list of enabled modules using:
bin/magento module:status | grep -i async
And the installed async-related modules are:
- Magento_AsyncConfig
- Magento_InventorySalesAsyncOrder
- Magento_SwaggerWebapiAsync
- Magento_AsynchronousOperations
- Magento_WebapiAsync
Given that these modules are enabled, I would like to know what additional steps are needed to properly enable asynchronous orders in Magento 2.4.7.
Any guidance would be greatly appreciated!