You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading to 3.9.0 our CI pipelines fail for unit and integration tests.
In our unit test pipeline we run setup:di:compile in an environment without Magento being properly installed. There is no database or env.php.
Running bin/magento setup:di:compile fails with this error:
In WebsiteRepository.php line 159:
The default website isn't defined. Set the website and try again.
The same is true for our integration test pipeline, where we get this error when running the Magento install command.
In WebsiteRepository.php line 159:
[DomainException]
The default website isn't defined. Set the website and try again.
Exception trace:
at /var/www/html/vendor/magento/module-store/Model/WebsiteRepository.php:159
Magento\Store\Model\WebsiteRepository->getDefault() at /var/www/html/vendor/magento/module-store/Model/StoreResolver/Website.php:49
Magento\Store\Model\StoreResolver\Website->getAllowedStoreIds() at /var/www/html/vendor/magento/module-store/Model/StoresData.php:67
Magento\Store\Model\StoresData->getStoresData() at /var/www/html/vendor/magento/module-store/Model/StoreResolver.php:138
Magento\Store\Model\StoreResolver->getStoresData() at /var/www/html/vendor/magento/module-store/Model/StoreResolver.php:97
Magento\Store\Model\StoreResolver->getCurrentStoreId() at /var/www/html/generated/code/Magento/Store/Model/StoreResolver/Proxy.php:105
Magento\Store\Model\StoreResolver\Proxy->getCurrentStoreId() at /var/www/html/vendor/magento/module-store/Model/StoreManager.php:159
Magento\Store\Model\StoreManager->getStore() at /var/www/html/vendor/justbetter/magento2-sentry/Helper/Data.php:320
JustBetter\Sentry\Helper\Data->getStore() at /var/www/html/vendor/justbetter/magento2-sentry/Helper/Data.php:199
JustBetter\Sentry\Helper\Data->getStoreId() at /var/www/html/vendor/justbetter/magento2-sentry/Helper/Data.php:209
JustBetter\Sentry\Helper\Data->collectModuleConfig() at /var/www/html/vendor/justbetter/magento2-sentry/Helper/Data.php:75
JustBetter\Sentry\Helper\Data->__construct() at /var/www/html/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php:121
Magento\Framework\ObjectManager\Factory\AbstractFactory->createObject() at /var/www/html/vendor/magento/framework/ObjectManager/Factory/Compiled.php:108
Magento\Framework\ObjectManager\Factory\Compiled->create() at /var/www/html/vendor/magento/framework/ObjectManager/Factory/Compiled.php:150
Magento\Framework\ObjectManager\Factory\Compiled->get() at /var/www/html/vendor/magento/framework/ObjectManager/Factory/Compiled.php:79
Magento\Framework\ObjectManager\Factory\Compiled->create() at /var/www/html/vendor/magento/framework/ObjectManager/ObjectManager.php:73
Magento\Framework\ObjectManager\ObjectManager->get() at /var/www/html/vendor/magento/framework/Logger/LoggerProxy.php:101
Magento\Framework\Logger\LoggerProxy->getLogger() at /var/www/html/vendor/magento/framework/Logger/LoggerProxy.php:140
Magento\Framework\Logger\LoggerProxy->error() at /var/www/html/vendor/magento/framework/Console/Cli.php:121
Magento\Framework\Console\Cli->doRun() at /var/www/html/vendor/symfony/console/Application.php:175
Symfony\Component\Console\Application->run() at /var/www/html/bin/magento:23
I think this bug was introduced with the changes from b4fd7e1
The text was updated successfully, but these errors were encountered:
Hi, i have a similar setup where the env.php does not exist during the compilation step.
Unfortunately though i am unable to reproduce this myself, having successfully deployed multiple sites.
If you find what is causing it for you i'd happily accept a PR!
Hi, i have a similar setup where the env.php does not exist during the compilation step. Unfortunately though i am unable to reproduce this myself, having successfully deployed multiple sites.
If you find what is causing it for you i'd happily accept a PR!
You can reproduce this by setting your local magento project in production mode and delete (or rename) you env.php.
Then just run magento setup:di:compile
After upgrading to 3.9.0 our CI pipelines fail for unit and integration tests.
In our unit test pipeline we run setup:di:compile in an environment without Magento being properly installed. There is no database or env.php.
Running
bin/magento setup:di:compile
fails with this error:The same is true for our integration test pipeline, where we get this error when running the Magento install command.
I think this bug was introduced with the changes from b4fd7e1
The text was updated successfully, but these errors were encountered: