andrinheusser
andrinheusser
DDeno
Created by andrinheusser on 9/23/2023 in #help
Troubleshooting deno.land downloads
from this specifc server, openssl s_client -4 --connect deno.land:443 failed, while openssl s_client -6 --connect deno.land:443 worked fine. switching servers to anther location fixed the problem for me.
6 replies
DDeno
Created by andrinheusser on 9/23/2023 in #help
Troubleshooting deno.land downloads
enabling docker ipv6 support enables containers to download from deno.land 🙂 no luck for containers inside the minikube cluster yet...
6 replies
DDeno
Created by andrinheusser on 9/23/2023 in #help
Troubleshooting deno.land downloads
root@4a746f636a41:/# curl -v https://deno.land/std@0.202.0/assert/mod.ts
* Trying 34.120.54.55:443...
* Connected to deno.land (34.120.54.55) port 443 (#0)
* ALPN: offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/certs/ca-certificates.crt
* CApath: /etc/ssl/certs
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to deno.land:443
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to deno.land:443
root@4a746f636a41:/#
root@4a746f636a41:/# curl -v https://deno.land/std@0.202.0/assert/mod.ts
* Trying 34.120.54.55:443...
* Connected to deno.land (34.120.54.55) port 443 (#0)
* ALPN: offers h2,http/1.1
* TLSv1.3 (OUT), TLS handshake, Client hello (1):
* CAfile: /etc/ssl/certs/ca-certificates.crt
* CApath: /etc/ssl/certs
* OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to deno.land:443
* Closing connection 0
curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to deno.land:443
root@4a746f636a41:/#
6 replies
DDeno
Created by andrinheusser on 3/3/2023 in #help
Sequentially write to TPC connection
Yes, this "heavily inspired" the code included in the post. It's basically the same minus console.log.
3 replies