-
Notifications
You must be signed in to change notification settings - Fork 874
chore: send workspace pubsub events by owner id #14964
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
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @ethanndickson and the rest of your teammates on |
This was referenced Oct 3, 2024
c5c1316
to
c320382
Compare
ethanndickson
commented
Oct 4, 2024
// Optional: | ||
// WorkspaceID avoids a future lookup to find the workspace ID by setting | ||
// the cache in advance. | ||
WorkspaceID uuid.UUID |
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 doesn't need to be optional anymore, presumably since we removed the v1 agent api.
spikecurtis
reviewed
Oct 14, 2024
8544d74
to
b7c333d
Compare
spikecurtis
reviewed
Oct 18, 2024
31a3d36
to
f6d811f
Compare
03379ee
to
9dfa2af
Compare
spikecurtis
approved these changes
Oct 31, 2024
9dfa2af
to
ea1ef09
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
We currently send empty payloads to pubsub channels of the form
workspace:<workspace_id>
to notify listeners of updates to workspaces (such as for refreshing the workspace dashboard).To support #14716, we'll instead send
WorkspaceEvent
payloads to pubsub channels of the formworkspace_owner:<owner_id>
. This enables a listener to receive events for all workspaces owned by a user.This PR replaces the usage of the old channels without modifying any existing behaviors.
We've defined
WorkspaceEventKind
s based on how the old channel was used, but it's not yet necessary to inspect the types of any of the events, as the existing listeners are designed to fire off any of them.