Hello, I just recently installed open edx with automated installation from this link :
and i tried creating some users and courses, but when i delete a user with username X from Django Admin Page (openedxURL/admin), and then recreated the username X again (but with different email), I got error when opening the discussion in a course.
Traceback (most recent call last):
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/handlers/base.py", line 132, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/utils/decorators.py", line 145, in inner
return func(*args, **kwargs)
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/contrib/auth/decorators.py", line 22, in _wrapped_view
return view_func(request, *args, **kwargs)
File "/edx/app/edxapp/edx-platform/lms/djangoapps/django_comment_client/forum/views.py", line 183, in wrapped_view
return view_func(request, course_key, *args, **kwargs)
File "/edx/app/edxapp/edx-platform/lms/djangoapps/django_comment_client/forum/views.py", line 234, in forum_form_discussion
user_info = user.to_dict()
File "/edx/app/edxapp/edx-platform/lms/lib/comment_client/models.py", line 60, in to_dict
self.retrieve()
File "/edx/app/edxapp/edx-platform/lms/lib/comment_client/models.py", line 65, in retrieve
self._retrieve(*args, **kwargs)
File "/edx/app/edxapp/edx-platform/lms/lib/comment_client/user.py", line 157, in _retrieve
self.save()
File "/edx/app/edxapp/edx-platform/lms/lib/comment_client/models.py", line 142, in save
metric_action='model.update'
File "/edx/app/edxapp/edx-platform/lms/lib/comment_client/utils.py", line 101, in perform_request
raise CommentClientRequestError(response.text, response.status_code)
CommentClientRequestError: u'["Username is already taken"]'