Hi, can you explain why this doesn't work:
----- import os, sys, thread, time sys.path.append('/mysite') os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' from django.core.handlers.wsgi import WSGIHandler() from django.db import connection import wsgiref.simple_server connection.creation.create_test_db(verbosity=1) app = WSGIHandler() serv = wsgi_ss.make_server('',8888,app) thread.start_new_thread(serv.serve_forever,()) time.sleep(60) ----- resulting in a "no such table: django_session" error? Notice that this works: ----- import os, sys, thread, time sys.path.append('/mysite') os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' from django.core.handlers.wsgi import WSGIHandler() from django.db import connection import wsgiref.simple_server connection.creation.create_test_db(verbosity=1) app = WSGIHandler() serv = wsgiref.simple_server.make_server('',8888,app) serv.serve_forever() ----- where wsgiref.simple_server is not a threaded WSGI container server. Thank you. Cristiano -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.