We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba17528 commit b3d7cefCopy full SHA for b3d7cef
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 thread, 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