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
I have a webserver bound to [::1]:8080.
[::1]:8080
When I use the following plan:
--- base: 'http://localhost:8080' iterations: 1000 concurrency: 10 plan: - name: aaa request: url: /aaa.txt
All I get is connection refused errors. curl http://localhost:8080/aaa.txt works. Judging by strace, it doesn't even try to connect to ::1.
curl http://localhost:8080/aaa.txt
strace
::1
If I use http://[::1]:8080 as base, it works fine (which is a workaround).
http://[::1]:8080
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a webserver bound to
[::1]:8080
.When I use the following plan:
All I get is connection refused errors.
curl http://localhost:8080/aaa.txt
works. Judging bystrace
, it doesn't even try to connect to::1
.If I use
http://[::1]:8080
as base, it works fine (which is a workaround).The text was updated successfully, but these errors were encountered: