[Rt-commit] rt branch, 4.2/switch-oracle-session-backend, created. rt-4.1.13-19-g7f97d02

Thomas Sibley trs at bestpractical.com
Fri Jun 21 14:46:34 EDT 2013


The branch, 4.2/switch-oracle-session-backend has been created
        at  7f97d0293501933a63f0a90a5e6c93b9b9ac5aa3 (commit)

- Log -----------------------------------------------------------------
commit 7f97d0293501933a63f0a90a5e6c93b9b9ac5aa3
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Fri Jun 21 11:22:51 2013 -0700

    Default to storing sessions in the database on Oracle
    
    This switches away from file-based sessions by default on Oracle, which
    was a historical hold-over.

diff --git a/lib/RT/Interface/Web/Session.pm b/lib/RT/Interface/Web/Session.pm
index e5c6433..f2dd603 100644
--- a/lib/RT/Interface/Web/Session.pm
+++ b/lib/RT/Interface/Web/Session.pm
@@ -98,8 +98,9 @@ sessions class names as values.
 
 sub Backends {
     return {
-        mysql => 'Apache::Session::MySQL',
-        Pg    => 'Apache::Session::Postgres',
+        mysql  => 'Apache::Session::MySQL',
+        Pg     => 'Apache::Session::Postgres',
+        Oracle => 'Apache::Session::Oracle',
     };
 }
 

-----------------------------------------------------------------------


More information about the Rt-commit mailing list