-
Notifications
You must be signed in to change notification settings - Fork 510
fix: enable SO_REUSEPORT in listener config #1936
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b604b8b
to
981264f
Compare
981264f
to
4a32d00
Compare
Pull Request Test Coverage Report for Build 13175071465Details
💛 - Coveralls |
hf
approved these changes
Feb 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this can cause us problems but hopefully solve some.
kangmingtay
pushed a commit
that referenced
this pull request
Mar 6, 2025
🤖 I have created a release *beep* *boop* --- ## [2.170.0](v2.169.0...v2.170.0) (2025-03-06) ### Features * improvements to config reloader, 100% coverage ([#1933](#1933)) ([21c2256](21c2256)) * increase test coverage in conf package to 100% ([#1937](#1937)) ([bc57c1c](bc57c1c)) ### Bug Fixes * enable SO_REUSEPORT in listener config ([#1936](#1936)) ([a474b80](a474b80)) * ignore not found error to check for pkce prefix later ([#1929](#1929)) ([fbbebcc](fbbebcc)) * log version & migration count ([#1934](#1934)) ([8078cdc](8078cdc)) * update figma token endpoint ([#1952](#1952)) ([18fbbb5](18fbbb5)) * use sys/unix instead of syscall ([#1953](#1953)) ([4a6d9bc](4a6d9bc)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
wdoppenberg
pushed a commit
to wdoppenberg/supabase-auth
that referenced
this pull request
Jun 5, 2025
## What kind of change does this PR introduce? * Enables `SO_REUSEPORT` which allows multiple sockets to bind to the same address and port - this is useful when the auth service needs to be restarted and the port is still being held by a reverse proxy (i.e. envoy) until all the connections are drained
wdoppenberg
pushed a commit
to wdoppenberg/supabase-auth
that referenced
this pull request
Jun 5, 2025
🤖 I have created a release *beep* *boop* --- ## [2.170.0](supabase/auth@v2.169.0...v2.170.0) (2025-03-06) ### Features * improvements to config reloader, 100% coverage ([supabase#1933](supabase#1933)) ([21c2256](supabase@21c2256)) * increase test coverage in conf package to 100% ([supabase#1937](supabase#1937)) ([bc57c1c](supabase@bc57c1c)) ### Bug Fixes * enable SO_REUSEPORT in listener config ([supabase#1936](supabase#1936)) ([a474b80](supabase@a474b80)) * ignore not found error to check for pkce prefix later ([supabase#1929](supabase#1929)) ([fbbebcc](supabase@fbbebcc)) * log version & migration count ([supabase#1934](supabase#1934)) ([8078cdc](supabase@8078cdc)) * update figma token endpoint ([supabase#1952](supabase#1952)) ([18fbbb5](supabase@18fbbb5)) * use sys/unix instead of syscall ([supabase#1953](supabase#1953)) ([4a6d9bc](supabase@4a6d9bc)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
cemalkilic
pushed a commit
that referenced
this pull request
Aug 7, 2025
## What kind of change does this PR introduce? * Enables `SO_REUSEPORT` which allows multiple sockets to bind to the same address and port - this is useful when the auth service needs to be restarted and the port is still being held by a reverse proxy (i.e. envoy) until all the connections are drained
cemalkilic
pushed a commit
that referenced
this pull request
Aug 7, 2025
🤖 I have created a release *beep* *boop* --- ## [2.170.0](v2.169.0...v2.170.0) (2025-03-06) ### Features * improvements to config reloader, 100% coverage ([#1933](#1933)) ([21c2256](21c2256)) * increase test coverage in conf package to 100% ([#1937](#1937)) ([bc57c1c](bc57c1c)) ### Bug Fixes * enable SO_REUSEPORT in listener config ([#1936](#1936)) ([a474b80](a474b80)) * ignore not found error to check for pkce prefix later ([#1929](#1929)) ([fbbebcc](fbbebcc)) * log version & migration count ([#1934](#1934)) ([8078cdc](8078cdc)) * update figma token endpoint ([#1952](#1952)) ([18fbbb5](18fbbb5)) * use sys/unix instead of syscall ([#1953](#1953)) ([4a6d9bc](4a6d9bc)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
SO_REUSEPORT
which allows multiple sockets to bind to the same address and port - this is useful when the auth service needs to be restarted and the port is still being held by a reverse proxy (i.e. envoy) until all the connections are drained