-
Notifications
You must be signed in to change notification settings - Fork 894
feat: add single tailnet support to pgcoord #9351
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
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a20d318
feat: add single tailnet support to pgcoord
coadler efa2071
fixup! feat: add single tailnet support to pgcoord
coadler 2976c00
fixup! feat: add single tailnet support to pgcoord
coadler a7b39df
separate table + use channels
coadler 618b0e0
fix migrations
coadler f50f929
fixup! fix migrations
coadler 3a5bb76
fixup! fix migrations
coadler 3ddc783
fixup! fix migrations
coadler c84626a
Merge branch 'main' into colin/single-pgcoord
coadler a0cb904
Merge branch 'main' into colin/single-pgcoord
coadler dcb007d
add subscriber subsystem
coadler bdd7ef1
fixup! add subscriber subsystem
coadler 751b22f
fixup! add subscriber subsystem
coadler 3af1af1
fixup! add subscriber subsystem
coadler 7762a73
querier <- subscriber
coadler 08501e6
Merge branch 'main' into colin/single-pgcoord
coadler eb681ff
fixup! Merge branch 'main' into colin/single-pgcoord
coadler 390e837
fixup! Merge branch 'main' into colin/single-pgcoord
coadler a1c3acf
fixup! Merge branch 'main' into colin/single-pgcoord
coadler 8256670
fixup! Merge branch 'main' into colin/single-pgcoord
coadler a75f6f1
add extensive multiagent tests
coadler d143d2d
use dedicated channels for querier subscribe and closing conns
coadler 036094f
fixup! use dedicated channels for querier subscribe and closing conns
coadler e8a2b01
fixup! use dedicated channels for querier subscribe and closing conns
coadler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixup! Merge branch 'main' into colin/single-pgcoord
- Loading branch information
commit 8256670d45ed78a7d9371e81db201fbbf8ebcfba
There are no files selected for viewing
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
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.
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.
this is a memory leak: you add to
q.clientSubscriptions
but never remove.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.
You still never delete anything from
q.clientSubscriptions
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.
Whoops, I think I got this now.