-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[Identity] Change base type of IdentityClientOptions to PipelineOptions #5711
Conversation
@daviwil You mentioned that there is a node vs browser difference you were worried about here. Can you elaborate? Otherwise this change looks good to me |
What I'm seeing is that in the Node.js tests, log messages are only being written when Identity's The test code uses |
@daviwil In that case, can we log an issue for the logger? |
Yep, I'll file the issue for logger. |
Approved by adpship. |
This change updates
IdentityClientOptions
to be based onPipelineOptions
instead ofServiceClientOptions
. The change went very smoothly; the majority of changes were adding expected trace spans forcore-http
since thetracingPolicy
wasn't being added to the pipeline in tests before this commit.