On Fri, May 26, 2000 at 03:35:51PM -0700, Jeffrey W. Baker wrote:
> Greetings,
> 
> I have released Apache::Session 1.51.  The addition of the Oracle backing
> store took less time than expected.  It is included and tested in this
> release.  This is the only change from 1.50.

I just took a look at 1.51 (was using 1.08 before).

There seems to be a bug with Apache::Session::Store::Postgres

The pod docs suggest that this is legal:

   tie %session, 'Apache::Session::Postgres', $id, {
             Handle => $dbh,
                         Commit => 1
         };


However, if Handle is present, the Commit arg is ignored.  In
Apache::Session::Store::Postgres:

                if (exists $session->{args}->{Handle}) {
        $self->{dbh} = $session->{args}->{Handle};
        return;
    }

That should also set $self->{commit} = $session->{args}->{Commit} before
returning, no?

Mike

Reply via email to