Results 287 comments of Alexander Yastrebov

> listen tcp 0.0.0.0:37239: bind: address already in use This problem looks similar to #2718

Thank you for reporting, feel free to open a fix PR.

For applications based on Skipper it is possible to customize cookie encoding, see https://github.com/zalando/skipper/pull/2953

The tricky part about cookie cutting (I think not implemented by https://github.com/zalando/skipper/pull/1289) is that updating cookie to a smaller value should also delete last chunks of the old cookie. E.g....

> couldn't the Expires attribute be used to check if all the chunks belong to the same batch ? I think this is user-agent attribute provided via [Set-Cookie](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie) header but...

We have Redis integration so maybe we can implement it using redis commands or script (think `redis` filter).

Handling of non 101 status was added by https://github.com/zalando/skipper/pull/921 and changed to send the body by https://github.com/zalando/skipper/pull/1291

As a workaround for https://issues.apache.org/jira/browse/HTTPCLIENT-2344 one may add `dropRequestHeader("Connection") -> dropRequestHeader("Upgrade")` filters. It would be handy to drop a specific `Connection: Upgrade` and e.g. `Upgrade: TLS/1.0` values only so I've...

I think the problem is that webhook client follows redirects by default (see https://github.com/zalando/skipper/issues/3130) and then location from `responding with status code 302 with location redirect to https://wombat.XXX.net/auth/?rd=https%3A%2F%2Fwombat.XXX.net%2Fzb%2F\u0026rm=GET"` responds with...