-
Notifications
You must be signed in to change notification settings - Fork 90
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
Instrumentation support for dataloader #175
base: master
Are you sure you want to change the base?
Conversation
…edDataLoaderInstrumentation
…erInstrumentationContext
@@ -561,7 +561,7 @@ public Builder<K, V> options(DataLoaderOptions options) { | |||
return this; | |||
} | |||
|
|||
DataLoader<K, V> build() { | |||
public DataLoader<K, V> build() { |
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.
missed in previous PR
Hey Brad, I have used this PR in my local setup to implement spring-projects/spring-graphql#1034 and it works really well. I can now instrument dataloader calls without conflating them with regular data fetcher calls: So, all good from my perspective and ready to adopt this feature when it's out. |
…port # Conflicts: # src/main/java/org/dataloader/DataLoaderOptions.java
This is now complete and ready to be merged.
DataLoaderOptions is now immutable and hence some teaks t the original code had been done