-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Extract logging handlers from DagsterInstance to EventDomain #31614
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
+48
−42
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 was referenced Aug 7, 2025
0213891
to
c17714f
Compare
78f178c
to
babab60
Compare
This was referenced Aug 7, 2025
babab60
to
2f5efe9
Compare
c17714f
to
cacebe0
Compare
This was referenced Aug 7, 2025
cacebe0
to
f7a85a6
Compare
2f5efe9
to
e64e157
Compare
f7a85a6
to
277af2f
Compare
3186763
to
c498f18
Compare
9bfb7fd
to
00ecf97
Compare
c7fdc44
to
7954648
Compare
00ecf97
to
5cd3e9e
Compare
This was referenced Aug 7, 2025
OwenKephart
approved these changes
Aug 7, 2025
5cd3e9e
to
4d5a624
Compare
7954648
to
1ae5711
Compare
1ae5711
to
b107661
Compare
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.
Summary & Motivation
This PR extracts logging handler methods from DagsterInstance to EventDomain as part of the ongoing domain separation effort. The changes move three key logging methods:
The methods are moved from DagsterInstance to EventDomain with the public API remaining unchanged. The DagsterInstance.get_handlers() method now delegates to the EventDomain implementation.
How I Tested These Changes
Existing test suite validates the refactored functionality.