-
Notifications
You must be signed in to change notification settings - Fork 4.2k
fix: video_config runtime service added when loading for xBlock #37900
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: video_config runtime service added when loading for xBlock #37900
Conversation
|
Thanks for the pull request, @marslanabdulrauf! This repository is currently maintained by Once you've gone through the following steps feel free to tag them in a comment and let them know that your changes are ready for engineering review. 🔘 Get product approvalIf you haven't already, check this list to see if your contribution needs to go through the product review process.
🔘 Provide contextTo help your reviewers and other members of the community understand the purpose and larger context of your changes, feel free to add as much of the following information to the PR description as you can:
🔘 Get a green buildIf one or more checks are failing, continue working on your changes until this is no longer the case and your build turns green. DetailsWhere can I find more information?If you'd like to get more details on all aspects of the review process for open source pull requests (OSPRs), check out the following resources: When can I expect my changes to be merged?Our goal is to get community contributions seen and reviewed as efficiently as possible. However, the amount of time that it takes to review and merge a PR can vary significantly based on factors such as:
💡 As a result it may take up to several weeks or months to complete a review and merge your PR. |
|
Welcome @marslanabdulrauf Sharing the previous PR's related to this issue for the context: Task on my side:
|
|
merged with message:
|
|
Here are my testing notes (testing done on my local machine setup of tutor-dev)
git revert 7e72ec2778eaf7177a797d600f2383f4554eb003The following PR is likely the origin of this issue: |
|
Thanks @marslanabdulrauf . Do you mind backporting to ulmo? Ah I see @farhan , then it seems like there was an interaction between the way we added the new VideoConfigService, and the recent fix which copies the |
Yes, that needs to be figured out |
|
Thanks for noticing the connection @farhan . Would you be able to look into that next week? |
Sure, let's look into it next week |
|
Thanks!
Making a copy of the |
Backport PR is created: #37902 |
|
Ah, maybe this doesn't affect Ulmo? |
I created branch from Ulmo.1, could that be the reason of those test failures ? |
|
Nope, it was my mistake to ask for a backport. The video config service wasn't added until after the Ulmo cutoff, so the backport does not make sense. I've confirmed using an |
Related Ticket
https://github.com/mitodl/hq/issues/9905 (MIT Internal)
Description
Thanks @farhan for helping me out in understanding the new changing around VideoXblock and this issue 👍
This pull request introduces the
VideoConfigServiceinto the Studio runtime service loader, making video configuration functionality available throughout the Studio application. The main change is the addition of this service to the set of services loaded for Studio.Service integration:
VideoConfigServicefromopenedx.core.djangoapps.video_config.servicesincms/djangoapps/contentstore/utils.py.video_configentry to the services dictionary in theload_services_for_studiofunction, enabling access to video configuration features in Studio.Testing instructions