From: Chris W. <la...@us...> - 2004-11-27 23:49:43
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19540/SessionManager Modified Files: SQLite.pm File.pm DBI.pm Log Message: cosmetic Index: SQLite.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager/SQLite.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SQLite.pm 18 Feb 2004 05:25:28 -0000 1.3 --- SQLite.pm 27 Nov 2004 22:55:53 -0000 1.4 *************** *** 27,34 **** } else { ! oi_error "Insufficient parameters (this should have been caught earlier)"; } $log->is_debug && ! $log->debug( "Trying to fetch SQLite session [$session_id] ", "[DSN: $params{DataSource}] [Impl: $impl_class] ", "[Handle: $params{Handle}]" ); --- 27,35 ---- } else { ! oi_error "Insufficient parameters (this should have been caught ", ! "earlier): no 'Handle' or 'DataSource' defined"; } $log->is_debug && ! $log->debug( "Trying to fetch SQLite session '$session_id' ", "[DSN: $params{DataSource}] [Impl: $impl_class] ", "[Handle: $params{Handle}]" ); Index: File.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager/File.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** File.pm 13 Jun 2004 18:15:06 -0000 1.5 --- File.pm 27 Nov 2004 22:55:54 -0000 1.6 *************** *** 23,27 **** my $session_params = $session_config->{params}; $log->is_info && ! $log->info( "Trying to fetch File session [$session_id] ", "with [Dir: $session_params->{Directory}] ", "[LockDir: $session_params->{LockDirectory}] ", --- 23,27 ---- my $session_params = $session_config->{params}; $log->is_info && ! $log->info( "Trying to fetch File session '$session_id' ", "with [Dir: $session_params->{Directory}] ", "[LockDir: $session_params->{LockDirectory}] ", *************** *** 106,111 **** [session_info params] ! Directory cache/sessions ! LockDirectory cache/sessions_lock becomes: --- 106,111 ---- [session_info params] ! Directory = cache/sessions ! LockDirectory = cache/sessions_lock becomes: Index: DBI.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager/DBI.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DBI.pm 18 Feb 2004 05:25:28 -0000 1.3 --- DBI.pm 27 Nov 2004 22:55:54 -0000 1.4 *************** *** 33,37 **** $session_params->{LockHandle} = $session_params->{Handle}; $log->is_debug && ! $log->debug( "Using MySQL session store, with LockHandle parameter" ); } --- 33,37 ---- $session_params->{LockHandle} = $session_params->{Handle}; $log->is_debug && ! $log->debug( "Using MySQL store + LockHandle parameter" ); } |