From: Brandon L. Black Date: Tue, 7 Feb 2006 02:52:27 +0000 (+0000) Subject: pod update: s/->storage->dbh->disconnect/->storage->disconnect/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d1bf0a9d5c6d11bd70b7d6938403530faeebc2d;p=dbsrgits%2FDBIx-Class-Historic.git pod update: s/->storage->dbh->disconnect/->storage->disconnect/ --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index 59df7df..f287e92 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -439,7 +439,7 @@ development, you might like to put the following signal handler in your main database class to make sure it disconnects cleanly: $SIG{INT} = sub { - __PACKAGE__->storage->dbh->disconnect; + __PACKAGE__->storage->disconnect; }; =head2 Schema import/export