twata1

Results 46 comments of twata1

For your information about testing **t/mojo/cgi.t**. [Environment] Windows 7 SP1 32 bit Strawberry Perl 5.32.1 32 bit using Socket 2.032: [FAIL.txt](https://github.com/mojolicious/mojo/files/8598656/FAIL.txt) using Socket 2.032 with [a patch of rt#84600](https://rt.cpan.org/Public/Bug/Display.html?id=84600) (socket.patch):...

Thanks for the patch suggestion. By the way, I will close this ticket once and open the same at "https://github.com/Dual-Life/threads/issues". I would be happy to communicate with you there. Thank...

@sisyphus Thank you for your suggestion. It may take some time but I will give it a try.

> @twata1, I think the next thing to do is to create a new pull request for this at https://github.com/Perl/perl5/issues . > If you would like to do that, then...

I could certainly confirm that the warning is suppressed. Relavant part of the log for gmake with gcc-12.1.0 ``` Generating a gmake-style Makefile Writing Makefile for threads gmake[1]: Entering directory...

When I run the attached script as a test, HTTP::Tiny->new->get('https://github.com/') succeeds, but HTTP::Tiny->new->get('https://cpan.org/') fails. ``` C:\home\pianokey>perl tinytest.pl HTTP::Tiny (v0.084) $ENV{PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT} is 1 Get https://github.com/ OK Get https://cpan.org/ Failed! C:\home\pianokey>set PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT=0...

@stigtsp I have inclueded the output of $Mozilla::CA::VERSION. [tinytest2.pl.txt](https://github.com/chansen/p5-http-tiny/files/11781385/tinytest2.pl.txt) Output: ``` C:\home\pianokey>set PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT=1 C:\home\pianokey>perl tinytest2.pl HTTP::Tiny (v0.084) Mozilla::CA (v20221114) $ENV{PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT} is 1 Get https://github.com/ OK Get https://cpan.org/ Failed! C:\home\pianokey>set PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT=0...

@noxxi The ``perl -MIO::Socket::SSL=debug4 tinytest2.pl`` output results were as follows: ``` C:\home\pianokey>set PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT=1 C:\home\pianokey>perl -MIO::Socket::SSL=debug4 tinytest2.pl HTTP::Tiny (v0.084) Mozilla::CA (v20221114) $ENV{PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT} is 1 Get https://github.com/ DEBUG: .../IO/Socket/SSL.pm:3013: new ctx 45109360...

@stigtsp @noxxi Thanks for the speculation and advice. I would probably prefer to use it via HTTP-TLS proxy. If it were a real job, I would try to upgrade the...

After upgrading from version 0.084 to 0.086, I have just been able to confirm that the value of the environment variable ```PERL_HTTP_TINY_SSL_INSECURE_BY_DEFAULT``` has an effect. ``` C:\home\pianokey>perl tinytest2.pl HTTP::Tiny (v0.086)...