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
Expected Behavior:
If an environment has no V2 libraries in existence, the studio view handler for Library Content Blocks, https://studio/xblock/block_id/studio_view times out.
Here's the trace:
As a quick fix, I added a V2 lib to my site.
I then got this performance boost
t (an order of magnitude better)
This means that we need to make it so these calls:
Expected Behavior:
If an environment has no V2 libraries in existence, the studio view handler for Library Content Blocks,
https://studio/xblock/block_id/studio_view
times out.Here's the trace:
As a quick fix, I added a V2 lib to my site.
I then got this performance boost
t (an order of magnitude better)
This means that we need to make it so these calls:
edx-platform/xmodule/library_tools.py
Lines 193 to 195 in f2606ca
don't get sad and look for libraries that don't exist
specifically, I think the problem is blockstore's get get_bundles() method is called with None as input, which makes it sad.
The text was updated successfully, but these errors were encountered: