-
Notifications
You must be signed in to change notification settings - Fork 98
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
fix: sample app TypeError #1257
Conversation
App sample has error: TypeError: The `GET` method cannot be used with a body This pull request is to update the body to an json response option
failing Windows tests are being discussed here: |
@bcoe To move forward while the Node issues in question gets resolved (new Node version or new needle version), would it make sense to pin Node on Windows to 12.16.2 here? https://github.com/googleapis/cloud-trace-nodejs/blob/master/.github/workflows/ci.yaml#L61 |
@kintel yes, I would just switch to Node 10 on this branch for the purposes of landing. I believe the upstream issue will be fixed soon in Node. |
Nice fix! One question though - are we missing an integration test for the sample? I'm a little surprised this didn't get captured in the end to end test. |
@JustinBeckwith technically there is a test, but the test just checks that the process starts, not that it does the right thing. We should probably open a separate issue for improving the test. |
Opened follow-up issue: #1259 |
App sample has error: TypeError: The
GET
method cannot be used with a bodyThis pull request is to update the body to an json response option
Fixes #1246 🦕