Skip Menu |

This queue is for tickets about the Net-SSLGlue CPAN distribution.

Report information
The Basics
Id: 118388
Status: rejected
Priority: 0/
Queue: Net-SSLGlue

People
Owner: Nobody in particular
Requestors: DOUGW [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Turn off warning at least optionally
I'm using Net::SSHGlue::FTP with Net::FTP version 2.79, and it seems to work fine. Would be nice to be able to turn off 'Not tested with' version warning. Maybe introduce a package variable?
Am Fr 14. Okt 2016, 13:32:06, DOUGW schrieb: Show quoted text
> I'm using Net::SSHGlue::FTP with Net::FTP version 2.79, and it seems > to work fine. Would be nice to be able to turn off 'Not tested with' > version warning. Maybe introduce a package variable?
I did not test it with 2.79 so I don't want to remove this message. I don't think there is a need to add a way to override this warnings inside Net::SSLGlue because one can simply override it when importing the module like this: BEGIN { local $SIG{__WARN__} = sub {}; # ignore warnings within this block require Net::SSLGlue::FTP; }