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
Failed async course content export to git (course id: CourseLocator('MITx', '5.12r_12', '2025_Spring', None, None)): GitExportError('Unable to push changes. This is usually because the remote repository cannot be contacted')
The text was updated successfully, but these errors were encountered:
When a course is published without any actual changes, the git-auto-export process attempts to commit updates, but fails due to the absence of changes. The error originates from the git commit -a -m {commit_msg}command here, which returns an error when there’s nothing new to commit.
The exception is already being logged in the OpenedX git_export_utils
Possible solutions:
Pre-check for changes before running the commit command in openedX git_export_util.
Skip the exception -- not recommended, as this may hide legitimate errors.
Is this a settings error in the course, or the app, or something else?
Sentry Issue: OPENEDX-RESIDENTIAL-3N2
The text was updated successfully, but these errors were encountered: