mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-18 13:48:58 +02:00
bug fix
Signed-off-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
parent
f64ba6b60c
commit
d71a41ef71
@ -58,7 +58,7 @@ export class LastSeenService {
|
|||||||
.filter(
|
.filter(
|
||||||
(clientMetric) => clientMetric.yes > 0 || clientMetric.no > 0,
|
(clientMetric) => clientMetric.yes > 0 || clientMetric.no > 0,
|
||||||
)
|
)
|
||||||
.forEach(async (clientMetric) => {
|
.forEach((clientMetric) => {
|
||||||
const key = `${clientMetric.featureName}:${clientMetric.environment}`;
|
const key = `${clientMetric.featureName}:${clientMetric.environment}`;
|
||||||
this.lastSeenToggles.set(key, {
|
this.lastSeenToggles.set(key, {
|
||||||
featureName: clientMetric.featureName,
|
featureName: clientMetric.featureName,
|
||||||
|
Loading…
Reference in New Issue
Block a user