We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba17528 + 938154d commit 751df60Copy full SHA for 751df60
library/agent/Agent.ts
@@ -118,7 +118,10 @@ export class Agent {
118
time: Date.now(),
119
agent: this.getAgentInfo(),
120
},
121
- this.timeoutInMS
+ // We don't use `this.timeoutInMS` for startup event
122
+ // Since Node.js is single threaded, the HTTP request is fired before other imports are required
123
+ // It might take a long time before our code resumes
124
+ 30 * 1000
125
);
126
127
this.checkForReportingAPIError(result);
0 commit comments