diff --git a/modules/Bio/EnsEMBL/DBSQL/ProxyDBConnection.pm b/modules/Bio/EnsEMBL/DBSQL/ProxyDBConnection.pm index a8b0b6990b8ed9dfd200d99e19f8b11a40515b68..948d7d94ec090a229dd80860c977c945a4e5c479 100644 --- a/modules/Bio/EnsEMBL/DBSQL/ProxyDBConnection.pm +++ b/modules/Bio/EnsEMBL/DBSQL/ProxyDBConnection.pm @@ -66,7 +66,10 @@ sub new { throw "No database name -DBNAME given" unless $dbname; my $self = $class->SUPER::new($dbc); $self->dbname($dbname); - $self->reconnect_interval($reconnect_interval) if $reconnect_interval; + if($reconnect_interval) { + $self->reconnect_interval($reconnect_interval); + $self->_last_used(); + } return $self; }