I am debugging a really strange problem with a long term Perl script.
The problem is that the script does not exit die() as expected. Instead, the script just hangs without returning.
I did not define any error handlers, so I would suggest that die() will lead to the script terminating immediately.
This is the basic structure of the script and the modules used:
#!/usr/bin/perl use strict; use utf8; use warnings; use DBI;
What could be the explanation for this behavior? Are any of the modules used to install error handlers that could explain the script hanging on die() ?
knorv source share