-
Notifications
You must be signed in to change notification settings - Fork 176
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
Fix OpalServer-EvenBroadcaster integration & other OpalServer refactors #632
Open
roekatz
wants to merge
10
commits into
master
Choose a base branch
from
roe/per-10361-fix-opal-server-eventbroadcaster-integration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fix OpalServer-EvenBroadcaster integration & other OpalServer refactors #632
roekatz
wants to merge
10
commits into
master
from
roe/per-10361-fix-opal-server-eventbroadcaster-integration
Conversation
This file contains 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
✅ Deploy Preview for opal-docs canceled.
|
roekatz
force-pushed
the
roe/per-10361-fix-opal-server-eventbroadcaster-integration
branch
2 times, most recently
from
July 31, 2024 15:57
69854c3
to
ac7557e
Compare
roekatz
force-pushed
the
roe/per-10361-fix-opal-server-eventbroadcaster-integration
branch
from
August 15, 2024 16:05
ac7557e
to
82f8421
Compare
roekatz
changed the base branch from
master
to
roe/per-10476-write-opal-application-tests
August 15, 2024 16:31
roekatz
force-pushed
the
roe/per-10476-write-opal-application-tests
branch
from
August 29, 2024 11:56
089592e
to
2dce27b
Compare
Base automatically changed from
roe/per-10476-write-opal-application-tests
to
master
August 29, 2024 12:02
roekatz
force-pushed
the
roe/per-10361-fix-opal-server-eventbroadcaster-integration
branch
from
September 4, 2024 08:49
82f8421
to
bd420e0
Compare
roekatz
force-pushed
the
roe/per-10361-fix-opal-server-eventbroadcaster-integration
branch
from
September 4, 2024 14:15
bd420e0
to
fd22880
Compare
roekatz
changed the title
Fix OpalServer EvenBroadcaster integration
Fix OpalServer-EvenBroadcaster integration & other OpalServer refactors
Sep 5, 2024
roekatz
commented
Sep 25, 2024
@@ -1,7 +1,6 @@ | |||
idna>=3.3,<4 | |||
typer>=0.4.1,<1 | |||
fastapi>=0.109.1,<1 | |||
fastapi_websocket_pubsub==0.3.7 |
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 will be fixed to 0.3.9
once we release fastapi_websocket_pubsub
with that fix - https://github.com/permitio/fastapi_websocket_pubsub/pull/82/files
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.
EventBroadcaster
connection so not to restart process (as a result of recent fix not ignoring connection failure ofEventBroadcaster
) - This relies on this PR of fastapi_websocket_pubsubPubSubEndpoint
&EventBroadcaster
(fromfastapi_websocket_pubsub
) in opal-server'sPubSub
(use the shared abstraction rather than the LL objects)PubSub
responsible for detecting broadcaster disconnection an triggering the disconnect callbacks (instead of each component taking care of it separately - e.g statistics etc).topics/publisher.py
(most of each is just a layer that adds nothing, useful stuff like thePeriodicPublisher
was moved to more appropriate location).OpalServer
managing background tasks.