You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It does, but not by default. Judging by the Go tls documentation, you need to set the GODEBUG environment variable to contain tls13=1. I tried executing the following script:
importhttpfrom'k6/http';import{check}from'k6';exportdefaultfunction(){letresp=http.get("https://www.howsmyssl.com/a/check");check(resp,{"status is 200": (resp)=>resp.status===200,"tls 1.3": (resp)=>resp.json().tls_version==="TLS 1.3",});};
with k6 v0.24.0 by running GODEBUG=tls13=1 k6 run zt.js and that worked, but only because of the environment variable... It seems like in Go 1.13 (the next Go version that would probably be released in August), there won't be any need to use the environment variable (golang/go#30055), but maybe we'll opt-in before that...
No description provided.
The text was updated successfully, but these errors were encountered: