Commit 804bd403 authored by Julien Phalip's avatar Julien Phalip
Browse files

Fixed #17506 -- Did a minor optimization in the sessions' database backend....

Fixed #17506 -- Did a minor optimization in the sessions' database backend. Thanks to FunkyBob for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17390 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 752a43e2
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -24,11 +24,7 @@ class SessionStore(SessionBase):
            return {}

    def exists(self, session_key):
        try:
            Session.objects.get(session_key=session_key)
        except Session.DoesNotExist:
            return False
        return True
        return Session.objects.filter(session_key=session_key).exists()

    def create(self):
        while True: