updated reset of the stats usage worker to reset metrics

This commit is contained in:
ArnabChatterjee20k 2025-08-28 19:14:14 +05:30
parent 743bcceb56
commit f067d1fadf

View file

@ -85,4 +85,11 @@ class StatsUsage extends Event
}),
];
}
public function reset(): Event
{
$this->metrics = [];
parent::reset();
return $this;
}
}