Alex Birch
Alex Birch
encountering this issue. I checked MySQL's processlist to find the connection that `DBIx::Connector` made, kill it, and then attempt to do a query using the killed DBIx connection (in fixup...
Worth knowing that: - DBD::mysql provides a MySQL-specific connection option — `mysql_auto_reconnect` — which is enabled by default - auto-reconnect is **not** implemented when connection is in AutoCommit mode -...
I'm surprised by how this is handled though. My script is something like this: ```perl my $dsn = "DBI:mysql:database=$conf{'db_name'};host=$conf{'db_host'}"; my $conn = DBIx::Connector->new($dsn, $conf{'db_user'}, $conf{'db_passwd'}, { RaiseError => 1, #...
thanks for the explanation. I'll try and find the guilty check.
Actually, it never seems to enter the `connected` function at all. I tried this whilst reproducing the error, and also tried it on complete happy path. ```perl use IO::Handle; sub...
You can invoke like so: ```js var momentTz = require('moment-timezone'); var moment = require('./moment-business-days')(momentTz); ```