-
Notifications
You must be signed in to change notification settings - Fork 104
Fix/event subscription group #199
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
Closed
jhery-rdo
wants to merge
42
commits into
AcademySoftwareFoundation:main
from
jhery-rdo:fix/event-subscription-group
Closed
Fix/event subscription group #199
jhery-rdo
wants to merge
42
commits into
AcademySoftwareFoundation:main
from
jhery-rdo:fix/event-subscription-group
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
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…annotation_serialiser.cpp. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…List, and Timecode. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…ed as MS_MISSING. This allows for media_sources to be provided by http(s). Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…ore file exists in a thumbnail cache directory. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…sage. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…data value through xstudio's file-path remapping mechanism. Likewise, all the search paths within the config are also passed through file path remapping. Note that any path set via the OCIO environment variable is left as-is. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
…ur management metadata. We use this to set the working_space to "raw" for media we want to remain unmanaged but still allow for the global view to be set without causing error messages. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
… Ctrl+1 through Ctrl+9 (linux) and each select the the corresponding view for the current display. Under MacOS these are Cmd+1 through Cmd+9. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
Signed-off-by: Thomas Manceau <manceau.thomas19@gmail.com>
Signed-off-by: Thomas Manceau <manceau.thomas19@gmail.com>
Updated version of openimageio from 2.5.19.1 to 2.5.16.0#1. Signed-off-by: Thomas Manceau <manceau.thomas19@gmail.com>
…re/implement-oiio-reader AcademySoftwareFoundation#98: Open Image IO Library / Reader
…ure_remove_media_sources Add ability to programatically remove media_source's from media items.
…_fixes_additions Miscellaneous fixes and additions
…_cosmetic_fixes Misc cosmetic fixes
…_additions OCIO view hotkeys, working_space, and file-path remapping
…ure_disable_http_ssl_verify Allow for optionally disabling SSL verification.
Signed-off-by: Hugh Macdonald <hugh@hughmacdonald.co.uk>
…ix-windows-plugin-path AcademySoftwareFoundation#188: Fix environment variable path separator on Windows
…f posix path to an OTIO file. Signed-off-by: Ken McGaugh <ken@mcgaugh.co.uk>
|
Signed-off-by: Ted Waine <ted.waine@gmail.com>
Sync to DNEG internal repo
Contributor
|
Hi @nosmose - thanks for this. Would you be able to do the paperwork on the 'EasyCLA' authorisation? Until you do that I can't run the merge. The other problem is that for some reason github is telling me that you're merging 38 commits and changing 300+ files!! Did you mean to do the PR into the develop branch? |
…rt_timeline_uri Added support for specifying timelines to import via custom URI
6031b2e to
c02f0c9
Compare
Author
|
Thanks @tedwaine will close this one and make a cleaner one |
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.
Fix subscribe_to_event_group() registering callback on wrong actor
Summary
ModuleBase.subscribe_to_event_group()registers the callback onevent_source.remoteinstead of the retrievedevent_group, causing event callbacks to never fire.The Bug
In
module.pyline 391:The method correctly retrieves the
event_groupactor but then ignores it, registering the callback onevent_source.remoteinstead.The Fix
Impact
subscribe_to_event_group()were non-functional. Callbacks were registered on the wrong actor and events were never delivered.Discovery
Found while implementing event-driven bookmark detection in a Python plugin. Studio-level session events were not being received despite successful subscription. Tracing the issue revealed the callback was registered on the wrong actor.