File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
packages/tracing/src/integrations Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,11 @@ export class Mysql implements Integration {
3939 return ;
4040 }
4141
42- /**
43- * function (query, callback) => void
44- * function (query, params, callback) => void
45- * function (query) => Promise
46- * function (query, params) => Promise
47- */
42+ // The original function will have one of these signatures:
43+ // function (query, callback) => void
44+ // function (query, params, callback) => void
45+ // function (query) => Promise
46+ // function (query, params) => Promise
4847 fill ( connection , 'query' , function ( orig : ( ) => void | Promise < unknown > ) {
4948 return function ( this : unknown , options : unknown , values : unknown , callback : unknown ) {
5049 const scope = getCurrentHub ( ) . getScope ( ) ;
You can’t perform that action at this time.
0 commit comments