We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c7afb commit c5963f8Copy full SHA for c5963f8
packages/collector/test/tracing/protocols/http/client/sdkApp1.js
@@ -19,11 +19,13 @@ const main = async () => {
19
let err1;
20
21
try {
22
- const req = new fetch.Request(`http://127.0.0.1:${agentPort}/ping`);
23
- await fetch(req);
+ // eslint-disable-next-line no-unused-vars
+ const pingResponse = await fetch(`http://127.0.0.1:${agentPort}/ping`);
24
25
await instana.sdk.async.startEntrySpan('my-translation-service');
26
- await fetch('https://www.ibm.com/products/instana');
+
27
28
+ const response = await fetch('https://www.ibm.com/products/instana');
29
} catch (err) {
30
err1 = err;
31
}
0 commit comments