-
Notifications
You must be signed in to change notification settings - Fork 884
test(exporter-*-grpc): use RegExp to match Deadline Exceeded error #4620
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
test(exporter-*-grpc): use RegExp to match Deadline Exceeded error #4620
Conversation
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.
LGTM
FWIW, I think the relevant grpc-js change was: grpc/grpc-node@d7d1717#diff-a2981769852ae1a4aa124162b4180aa93f74f0e999aa382b8efc524f6a083441R118
@@ -10,6 +10,7 @@ | |||
"hasInstallScript": true, | |||
"license": "Apache-2.0", | |||
"workspaces": [ | |||
"api", |
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 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.
Opened #4623 to fix this 🙂
Thanks for digging that one up 🙂 It's good to have a reference 👍 |
Which problem is this PR solving?
New versions of
@grpc/grpc-js
add more info to theDeadline Exceeded
error, making our tests fail. The error still starts withDeadline Exceeded
so I switched the assertion from astrictEqual()
to amatch()
Short description of the changes
@grpc/grpc-js
to latest (package-lock.json only)How Has This Been Tested?