Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Feb 14, 2023
1 parent e8a6721 commit fa96fbd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/plugins/usage_collection/server/routes/stats/stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,11 @@ export function registerStatsRoute({
// to know about the change; however, to support legacy use cases where this
// wasn't true, we need to be backwards compatible with how the legacy data
// looked and support those use cases here.
extended = isLegacy ? { clusterUuid, } : collectorSet.toApiFieldNames({
clusterUuid,
});
extended = isLegacy
? { clusterUuid }
: collectorSet.toApiFieldNames({
clusterUuid,
});
}

// Guaranteed to resolve immediately due to replay effect on getOpsMetrics$
Expand Down

0 comments on commit fa96fbd

Please sign in to comment.