Skip to content

Instantly share code, notes, and snippets.

@zeppelinen
Created September 17, 2020 09:11
Show Gist options
  • Save zeppelinen/aadb2ed07199acaa221c7f995f2badb9 to your computer and use it in GitHub Desktop.
Save zeppelinen/aadb2ed07199acaa221c7f995f2badb9 to your computer and use it in GitHub Desktop.
A snippet to handle Django mysql server has gone away error
from django.db import connection, connections
if connection.connection and not connection.is_usable():
del connections._connections.default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment