-
Notifications
You must be signed in to change notification settings - Fork 323
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
lookup function throws The "options.lookup" property must be of type function. Received type string
in 4.49.0
#4894
Comments
blemoine
added a commit
to blemoine/dd-trace-js
that referenced
this issue
Nov 18, 2024
The previous version was transforming the lookup parameter to a string. Closes DataDog#4894
|
tlhunter
pushed a commit
that referenced
this issue
Feb 11, 2025
The previous version was transforming the lookup parameter to a string. Closes #4894
6 tasks
tlhunter
added a commit
that referenced
this issue
Feb 12, 2025
The previous version was transforming the lookup parameter to a string. Closes #4894 Co-authored-by: Benoit Lemoine <benoit.lemoine@busbud.com>
watson
pushed a commit
that referenced
this issue
Feb 17, 2025
The previous version was transforming the lookup parameter to a string. Closes #4894 Co-authored-by: Benoit Lemoine <benoit.lemoine@busbud.com>
watson
pushed a commit
that referenced
this issue
Feb 17, 2025
The previous version was transforming the lookup parameter to a string. Closes #4894 Co-authored-by: Benoit Lemoine <benoit.lemoine@busbud.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I recently migrated from dd-trace 4.29 to 4.49
I'm using node 22.11.0.
This code:
Is working and displaying
LOOKUP CALLED
in 4.29.0, but is throwingTypeError [ERR_INVALID_ARG_TYPE]: The "options.lookup" property must be of type function. Received type string ('(...args) => {
In 4.49.0
If I should guess the culprit, I'd say this line:
lookup
is not a string, it's a function.Edit:
confirming that replacing the above line by
this._setValue(opts, 'lookup', options.lookup)
solves the problemThe text was updated successfully, but these errors were encountered: