Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #39770 The store that was requested wasn't found #39773

Open
wants to merge 2 commits into
base: 2.4-develop
Choose a base branch
from

Conversation

coresh
Copy link

@coresh coresh commented Mar 27, 2025

Fix the case - when $storeCode === Area::AREA_GRAPHQL

 Magento\Store\Model\StoreRepository->get($code = 'graphql')

The issue provided by the request:

curl 'https://your-magento-test-host.com/graphql' -H 'accept: */*' -H 'accept-language: en-US,en;q=0.9' -H 'authorization;' -H 'cache-control: no-cache' -H 'content-type: application/json' -b 'SID=94638c7c90fa603674e1df25068d13d6; _ga=GA1.1.1738941708.1742491653; pwaProMore=1; cookie_accepted=true; cf_clearance=FwzcQkb_y5TxCmAatAQ22oOun9jzGow1XWdB8QA7VL0-1742536421-1.2.1.1-pQ_1vRuHXNR.t34JcS9EFcH.k1B54Hmkjaom_W.AmIcaCP1ycv39jwrMDu8RDR3rmr58YasLwU4ZURrJRVma7JsmhMljnCeNJ7oIeCYQbllqJSm43aQygaghKXQQ11Z_AgpFKtcVfz08AKDXYvyXzLVAmNxZW5pdlKu4wLe_kvI3Ss3GFDgOkLpPL1iwgzg_5WWCzFVyxD8mAvOvNzrSG6GqwrYnoI7wEz7JRRYCJm1N.UWw8YxFop4RqykGFQhLkmsyQVu9up.7RYaWoZAKvi_kHwbv_XMhGYybPe6se7eLdtoGBoGRHrjV7lprVwsKyek9WKgj2k0NzUFCbr6ByFRLZSmyCglFkfXgp_Wd4_o; _ga_LWFKYRLFVB=GS1.1.1742536422.5.0.1742536422.0.0.0' -H 'origin: https://your-magento-test-host.com' -H 'pragma: no-cache' -H 'priority: u=1, i' -H 'referer: https://your-magento-test-host.com/en_us/' -H 'sec-ch-ua: "Not:A-Brand";v="24", "Chromium";v="134"' -H 'sec-ch-ua-mobile: ?0' -H 'sec-ch-ua-platform: "Linux"' -H 'sec-fetch-dest: empty' -H 'sec-fetch-mode: cors' -H 'sec-fetch-site: same-origin' -H 'store: en_us' -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36' -H 'x-magento-cache-id: b665ee02f24c915afc32f00f3697beb351eea255490f62b3e93dbdaf4ba1bff6' --data-raw '{"operationName":"createCart","variables":{},"query":"mutation createCart {\n  cartId: createEmptyCart\n}\n"}';

The above request is part of the magento pwa-studio requests.
The request executing e.g. during opening the home page.

Affected to the Case:

Store::XML_PATH_STORE_IN_URL

Core config data value for the path: 'web/url/use_store' === 1

select * from core_config_data where path='web/url/use_store';
+-----------+---------+----------+-------------------+-------+---------------------+
| config_id | scope   | scope_id | path              | value | updated_at          |
+-----------+---------+----------+-------------------+-------+---------------------+
|       523 | default |        0 | web/url/use_store | 1     | 2024-08-29 20:49:29 |
+-----------+---------+----------+-------------------+-------+---------------------+

Description (*)

The fix appended additional verification for the case:
$storeCode === Area::AREA_GRAPHQL

To the method:

public function getValidStoreCode(Http $request, string $pathInfo = '') : ?string

Related Commit:

Merge branch 'ACP2E-3447' into PR-11-14-2024

Fixed Issue

  1. Fixes: related to the storeCode === Area::AREA_GRAPHQL issue The store that was requested wasn't found #39770
Magento\Framework\Exception\NoSuchEntityException: The store that was requested wasn't found. Verify the store and try again.  in vendor/magento/module-store/Model/StoreRepository.php on line 75

Call Stack:
    0.0001     507288   1. {main}() pub/index.php:0
    0.0110    2907496   2. Magento\Framework\App\Bootstrap->run($application = class Magento\Framework\App\Http { ... }) pub/index.php:35
    0.0111    2919104   3. Magento\Framework\App\Http->launch() vendor/magento/framework/App/Bootstrap.php:264
    0.0111    2919104   4. Magento\Framework\App\Request\Http->getFrontName() vendor/magento/framework/App/Http.php:111
    0.0111    2919104   5. Magento\Framework\App\Request\Http->getPathInfo() vendor/magento/framework/App/Request/Http.php:219
    0.0111    2919104   6. Magento\Framework\App\Request\Http->getOriginalPathInfo() vendor/magento/framework/App/Request/Http.php:169
    0.0111    2919144   7. Magento\Backend\App\Request\PathInfoProcessor\Proxy->process($request = class Magento\Framework\App\Request\Http { ... }, $pathInfo = '/graphql') vendor/magento/framework/App/Request/Http.php:154
    0.0121    2927000   8. Magento\Backend\App\Request\PathInfoProcessor->process($request = class Magento\Framework\App\Request\Http { ... }, $pathInfo = '/graphql') generated/code/Magento/Backend/App/Request/PathInfoProcessor/Proxy.php:105
    0.0140    3653080   9. Magento\Store\App\Request\PathInfoProcessor->process($request = class Magento\Framework\App\Request\Http { ... }, $pathInfo = '/graphql') vendor/magento/module-backend/App/Request/PathInfoProcessor.php:55
    0.0140    3653080  10. Magento\Store\App\Request\StorePathInfoValidator->getValidStoreCode($request = class Magento\Framework\App\Request\Http { ... }, $pathInfo = '/graphql') vendor/magento/module-store/App/Request/PathInfoProcessor.php:42
    0.0143    3818928  11. Magento\Store\Model\StoreRepository->getActiveStoreByCode($code = 'graphql') vendor/magento/module-store/App/Request/StorePathInfoValidator.php:99
    0.0143    3818928  12. Magento\Store\Model\StoreRepository->get($code = 'graphql') vendor/magento/module-store/Model/StoreRepository.php:89

Manual testing scenarios (*)

  1. After fix: the issue related to $storeCode === Area::AREA_GRAPHQL disappeared
  2. Empty xdebug output - related to the case of the request:
curl 'https://your-magento-test-host.com/graphql' -H 'accept: */*' -H 'accept-language: en-US,en;q=0.9' -H 'authorization;' -H 'cache-control: no-cache' -H 'content-type: application/json' -b 'SID=94638c7c90fa603674e1df25068d13d6; _ga=GA1.1.1738941708.1742491653; pwaProMore=1; cookie_accepted=true; cf_clearance=FwzcQkb_y5TxCmAatAQ22oOun9jzGow1XWdB8QA7VL0-1742536421-1.2.1.1-pQ_1vRuHXNR.t34JcS9EFcH.k1B54Hmkjaom_W.AmIcaCP1ycv39jwrMDu8RDR3rmr58YasLwU4ZURrJRVma7JsmhMljnCeNJ7oIeCYQbllqJSm43aQygaghKXQQ11Z_AgpFKtcVfz08AKDXYvyXzLVAmNxZW5pdlKu4wLe_kvI3Ss3GFDgOkLpPL1iwgzg_5WWCzFVyxD8mAvOvNzrSG6GqwrYnoI7wEz7JRRYCJm1N.UWw8YxFop4RqykGFQhLkmsyQVu9up.7RYaWoZAKvi_kHwbv_XMhGYybPe6se7eLdtoGBoGRHrjV7lprVwsKyek9WKgj2k0NzUFCbr6ByFRLZSmyCglFkfXgp_Wd4_o; _ga_LWFKYRLFVB=GS1.1.1742536422.5.0.1742536422.0.0.0' -H 'origin: https://your-magento-test-host.com' -H 'pragma: no-cache' -H 'priority: u=1, i' -H 'referer: https://your-magento-test-host.com/en_us/' -H 'sec-ch-ua: "Not:A-Brand";v="24", "Chromium";v="134"' -H 'sec-ch-ua-mobile: ?0' -H 'sec-ch-ua-platform: "Linux"' -H 'sec-fetch-dest: empty' -H 'sec-fetch-mode: cors' -H 'sec-fetch-site: same-origin' -H 'store: en_us' -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36' -H 'x-magento-cache-id: b665ee02f24c915afc32f00f3697beb351eea255490f62b3e93dbdaf4ba1bff6' --data-raw '{"operationName":"createCart","variables":{},"query":"mutation createCart {\n  cartId: createEmptyCart\n}\n"}';

Questions or comments

But, the second part the issue related to the "infinite loop" still exists.

Contribution checklist (*)

  • Pull request has a meaningful description of its purpose
  • All commits are accompanied by meaningful commit messages
  • All new or changed code is covered with unit/integration tests (if applicable)
  • README.md files for modified modules are updated and included in the pull request if any README.md predefined sections require an update
  • All automated tests passed successfully (all builds are green)

Fix case: Magento\Store\Model\StoreRepository->get($code = 'graphql')
Copy link

m2-assistant bot commented Mar 27, 2025

Hi @coresh. Thank you for your contribution!
Here are some useful tips on how you can test your changes using Magento test environment.
❗ Automated tests can be triggered manually with an appropriate comment:

  • @magento run all tests - run or re-run all required tests against the PR changes
  • @magento run <test-build(s)> - run or re-run specific test build(s)
    For example: @magento run Unit Tests

<test-build(s)> is a comma-separated list of build names.

Allowed build names are:
  1. Database Compare
  2. Functional Tests CE
  3. Functional Tests EE
  4. Functional Tests B2B
  5. Integration Tests
  6. Magento Health Index
  7. Sample Data Tests CE
  8. Sample Data Tests EE
  9. Sample Data Tests B2B
  10. Static Tests
  11. Unit Tests
  12. WebAPI Tests
  13. Semantic Version Checker

You can find more information about the builds here
ℹ️ Run only required test builds during development. Run all test builds before sending your pull request for review.


For more details, review the Code Contributions documentation.
Join Magento Community Engineering Slack and ask your questions in #github channel.

@andrewbess
Copy link
Contributor

@magento run all tests

@andrewbess
Copy link
Contributor

Hello @coresh
Thank you for your contribution
Great catch
Please reopen the issue

@andrewbess andrewbess self-requested a review March 27, 2025 17:28
@andrewbess andrewbess self-assigned this Mar 27, 2025
@coresh
Copy link
Author

coresh commented Mar 28, 2025

@magento run all tests

@coresh
Copy link
Author

coresh commented Mar 28, 2025

@magento run Semantic Version Checker
@magento run Static Tests
@magento run Sample Data Tests B2B
@magento run Sample Data Tests CE
@magento run Sample Data Tests EE

Copy link

Failed to run the builds. Please try to re-run them later.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants