def _validate_thread_sharing(self):
     if (not self.allow_thread_sharing
             and self._thread_ident != _get_ident()):
         raise DatabaseError(
             DB_SHARED_THREAD % (
                 self.alias, self._thread_ident, _get_ident()),
         )
Exemplo n.º 2
0
 def _validate_thread_sharing(self):
     if (not self.allow_thread_sharing
         and self._thread_ident != _get_ident()):
         raise DatabaseError(
             DB_WRAPPER_ERROR
             % (self.alias, self._thread_ident, _get_ident())
         )
Exemplo n.º 3
0
 def _validate_thread_sharing(self):
     if (not self.allow_thread_sharing
         and self._thread_ident != _get_ident()):
             raise DatabaseError("DatabaseWrapper objects created in a "
                 "thread can only be used in that same thread. The object "
                 "with alias '%s' was created in thread id %s and this is "
                 "thread id %s."
                 % (self.alias, self._thread_ident, _get_ident()))