in reply to Re^3: $ENV{HTTPS_PROXY} works in one environment but not another (strace, wireshark, AutoTrace)
in thread $ENV{HTTPS_PROXY} works in one environment but not another

Thanks for sticking with me, I did the autotrace debug. What is weird is that it skips right over the part that hangs...

84: close(MAIL); 113: warn "Could not login to SFDC: $@"; 114: die;
Line 84 is the end of a subroutine that I use for mailing errors to an Operations team. Then line 113 is the error message when the login fails. There is no info in between those two items.
  • Comment on Re^4: $ENV{HTTPS_PROXY} works in one environment but not another (strace, wireshark, AutoTrace)
  • Download Code

Replies are listed 'Best First'.
Re^5: $ENV{HTTPS_PROXY} works in one environment but not another (close)
by tye (Sage) on Sep 30, 2015 at 13:05 UTC

    I'm not completely certain what you mean, but it is certainly possible that close(MAIL); is what is hanging, because it is waiting for the process that you were writing to to exit.

    Which means you might want to use "strace -f" so you can see what the process you are writing to is trying to do as well.

    - tye