We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running this script:
import http from 'k6/http'; http.get("http://test.loadimpact.com"); export default function () { console.log("test"); }
panics with:
panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: Panic at 40: runtime error: invalid memory address or nil pointer dereference [recovered] panic: Panic at 40: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x120 pc=0xaa5915] ...
Not sure if we should allow http function calls in the init context at all, but either we have to show a nice error message or it should work.
The text was updated successfully, but these errors were encountered:
Don't panic on http requests in init context fix #699
a1a5a75
instead return an error telling you this is not supported
a9b7585
mstoykov
No branches or pull requests
Running this script:
panics with:
Not sure if we should allow http function calls in the init context at all, but either we have to show a nice error message or it should work.
The text was updated successfully, but these errors were encountered: