Closed john-cai closed 3 years ago
We currently have an issue when switching from localhost:9236 to 0.0.0.0:9236: https://gitlab.com/gitlab-org/gitaly/-/issues/2521
localhost:9236
0.0.0.0:9236
The solution is to enable SO_REUSEPORT on linux so the upgrading process can bind to the same port if need be.
SO_REUSEPORT
I think this is covered now with ListenConfig being supported.
We currently have an issue when switching from
localhost:9236
to0.0.0.0:9236
: https://gitlab.com/gitlab-org/gitaly/-/issues/2521The solution is to enable
SO_REUSEPORT
on linux so the upgrading process can bind to the same port if need be.