-
-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
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
Requests to /admin/
will hang for a short while (firefox)
#2412
Comments
Possibly related here... pi-hole/docker-pi-hole#1802 Do you see the same delay if you drop the trailing slash? i.e |
Yea that looks like the same issue as what I have. A request to
A wireshark capture shows that the server does respond instantly with a 302 redirect and curl is also slow
However wget is fine |
This issue has been mentioned on Pi-hole Userspace. There might be relevant details there: https://discourse.pi-hole.net/t/web-interface-takes-5-seconds-to-load-the-initial-request/78841/4 |
I noticed the same behaviour on Chrome as well, I don't think it's related to a specific brwoser as I was able to confirm the same using a cURL command. |
Please run
and try again. Users deplayong FTL via
and then use the generated image (tagged as |
$ sudo pihole checkout ftl new/slow-302
Please note that changing branches severely alters your Pi-hole subsystems
Features that work on the master branch, may not on a development branch
This feature is NOT supported unless a Pi-hole developer explicitly asks!
Have you read and understood this? [y/N] y
[i] Checking for availability of branch new/slow-302 on GitHub
[✗] Requested branch is not available I believe there is typo in the branch name, it should be HTTP $ curl -o /dev/null -s -w "DNS lookup: %{time_namelookup}s\nConnect: %{time_connect}s\nSSL Hand
shake: %{time_appconnect}s\nTTFB: %{time_starttransfer}s\nTotal time: %{time_total}s\n" --resolve pi.hole:80:1
27.0.0.1 'http://pi.hole:80/admin/'
DNS lookup: 0.000109s
Connect: 0.000675s
SSL Handshake: 0.000000s
TTFB: 0.001724s
Total time: 0.003345s HTTPS $ curl -o /dev/null -s -w "DNS lookup: %{time_namelookup}s\nConnect: %{time_connect}s\nSSL Hand
shake: %{time_appconnect}s\nTTFB: %{time_starttransfer}s\nTotal time: %{time_total}s\n" --resolve pi.hole:443:1
27.0.0.1 'https://pi.hole:443/admin/'
DNS lookup: 0.000086s
Connect: 0.000655s
SSL Handshake: 0.275291s
TTFB: 0.276436s
Total time: 0.277631s |
Yeah, sorry for the typo but thanks for the verification. It has already been merged into |
Versions
Core version is v6.0.6 (Latest: v6.0.6)
Web version is v6.1 (Latest: v6.1)
FTL version is v6.1 (Latest: v6.1)
Description
In Firefox, requests to the web interface at
https://pi.hole/admin/
will hang for a short while because the server is sending a single redirectLocation
header. Without at least theContent-Length: 0
header the browser doesn't know whether to expect more data or not. Doesn't seem to effect Chrome.The text was updated successfully, but these errors were encountered: