-
Notifications
You must be signed in to change notification settings - Fork 11.8k
fix: use db instead of client in startTracing function #35409
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
base: develop
Are you sure you want to change the base?
fix: use db instead of client in startTracing function #35409
Conversation
Looks like this PR is not ready to merge, because of the following issues:
Please fix the issues and try again If you have any trouble, please check the PR guidelines |
Sorry is it fine now ? , this is my first contribution |
|
fix: use db instead of client in startTracing function
Description
This PR updates the startTracing function to use the db variable instead of client for better consistency and code clarity.
Changes Made
Before
startTracing({ service: '<%= name %>', db: client });
After
startTracing({ service: '<%= name %>', db: db });
Issue(s)
Fixes #35408