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 {
39
39
return ;
40
40
}
41
41
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
48
47
fill ( connection , 'query' , function ( orig : ( ) => void | Promise < unknown > ) {
49
48
return function ( this : unknown , options : unknown , values : unknown , callback : unknown ) {
50
49
const scope = getCurrentHub ( ) . getScope ( ) ;
You can’t perform that action at this time.
0 commit comments