-
Notifications
You must be signed in to change notification settings - Fork 298
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
Enabling Extended Session Distributed Tracing #373
Conversation
() => | ||
{ | ||
// Check if it is extended session. | ||
isExtendedSession = this.concurrentSessionLock.Acquire(); |
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.
@cgillum Is there a better way to check if it is an extended session?
I don't know why checking the lock availability becomes checking the extended session. It works, however, not cool.
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.
There might be... I will get back to you on that.
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.
Looks good for most part. Have a few questions that should probably be resolved before merging.
() => | ||
{ | ||
// Check if it is extended session. | ||
isExtendedSession = this.concurrentSessionLock.Acquire(); |
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.
There might be... I will get back to you on that.
I found that current implementation doesn't work well for extended session settings.
This PR unlock the extended session with Distributed Tracing.
Could you have a look, @cgillum ?