Skip to content
Snippets Groups Projects
Commit 34a58512 authored by Monika Komorowska's avatar Monika Komorowska
Browse files

Added reconnect_when_lost subroutine

parent c8f90a02
No related branches found
No related tags found
No related merge requests found
......@@ -828,6 +828,7 @@ sub get_SeqRegionCache {
}
#convenient method to retrieve the schema_build version for the database being used
sub _get_schema_build{
......@@ -994,6 +995,14 @@ sub disconnect_when_inactive{
$self->dbc->disconnect_when_inactive(@args);
}
sub reconnect_when_lost{
my ($self, @args) = @_;
deprecate("reconnect_when_lost Should no longer be called from the DBAdaptor. DBConnection should now be used OR preferably the object adaptor itself\n");
$self->dbc->reconnect_when_lost(@args);
}
sub host{
my ($self, @args) = @_;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment