mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-11 21:10:30 +01:00
[Bug] ??? net/http: invalid Cookie.Domain #114
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @FrozenFrog on GitHub (Oct 12, 2025).
The bug occurs after upgrading to v0.19.0.
Rolling back to v0.18.6 works fine.
I'm currently figuring out where the problem comes from — I suspect it's likely related to the OnHost or OnCookie rules
@yusing commented on GitHub (Oct 12, 2025):
Could you share the full docker compose,
.envandconfig.yml? (with credentials removed)@jakes44 commented on GitHub (Oct 12, 2025):
Logs and configs here - seeing the same thing (or something similar)
@yusing
@yusing commented on GitHub (Oct 12, 2025):
Thanks. Will check it tmr and try to fix it asap.
@yusing commented on GitHub (Oct 13, 2025):
@FrozenFrog @jakes44 please update to v0.19.2 and see if it's fixed
@jakes44 commented on GitHub (Oct 13, 2025):
Seems to be working for me now.
Noting that I am seeing this error in the logs now:
godoxy-proxy | 10-12 16:42 ??? failed to sufficiently increase receive buffer size (was: 208 kiB, wanted: 7168 kiB, got: 416 kiB). See https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes for details.@yusing commented on GitHub (Oct 13, 2025):
Nice.
For this error, it's expected because I have added SetReadBuffer and SetWriteBuffer to ACL UDP wrapper. Now it can correctly adjust buffer size but the amount it needs is beyond OS limit. Check on the link and update those two sysctl tunables.
@FrozenFrog commented on GitHub (Oct 13, 2025):
Yes, it has been fixed. Thank you 😊