We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4e444 commit ec85709Copy full SHA for ec85709
library/agent/Agent.ts
@@ -304,7 +304,9 @@ export class Agent {
304
this.routes.clear();
305
this.hostnames.clear();
306
this.users.clear();
307
- this.packages.clear();
+ // Note: packages are intentionally NOT cleared here because they persist
308
+ // for the lifetime of the application. If cleared, the dashboard would
309
+ // incorrectly show packages as "no longer in use" for long-running servers.
310
const response = await this.api.report(
311
this.token,
312
{
0 commit comments