~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/dispatch/request.py

  • Committer: drtomc
  • Date: 2008-02-04 00:21:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:396
Alter the apache config so that session objects get stored on disk. We're arranging for the disk in question to be a shared NFS filesystem so users get logged in across all the machines in the cluster. Theoretically.

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
        interface if porting away from mod_python."""
278
278
        # Cache the session object
279
279
        if not hasattr(self, 'session'):
280
 
            self.session = Session.Session(self.apache_req)
 
280
            self.session = Session.FileSession(self.apache_req)
281
281
        return self.session
282
282
 
283
283
    def get_fieldstorage(self):