regis
November 25, 2021, 8:04am
2
Did you follow the instructions on how to prepare the edx-platform repo for mounting? Open edX development — Tutor documentation
In particular: Configuration and customisation — Tutor documentation
Given that you have from py2neo import NodeMatcher
on line 21 of “edx-platform/openedx/core/djangoapps/coursegraph/tasks.py”, my guess is that you did not create your fork on top of the lilac.2 tag, but on top of master:
"""
This file contains a management command for exporting the modulestore to
neo4j, a graph database.
"""
import logging
from celery import shared_task
from django.utils import timezone
from edx_django_utils.cache import RequestCache
from edx_django_utils.monitoring import set_code_owner_attribute
from opaque_keys.edx.keys import CourseKey
from py2neo import Graph, Node, Relationship, authenticate, NodeSelector
from py2neo.compat import integer, string
log = logging.getLogger(__name__)
celery_log = logging.getLogger('edx.celery.task')
This file has been truncated. show original