heroku / django-heroku

[DEPRECATED] Do not use! See https://github.com/heroku/django-heroku/issues/56
BSD 3-Clause "New" or "Revised" License
459 stars 142 forks source link

Infinite structure #30

Open pupeno opened 5 years ago

pupeno commented 5 years ago

This line:

config['DATABASES']['default']['TEST'] = config['DATABASES']['default']

should probably be:

config['DATABASES']['default']['TEST'] = config['DATABASES']['default'].copy()

to avoid generating an infinite structure that generates an infinite loop in django/views/debug.py line 58,