refactor(core): Rename usage metrics method per suggestion (no-changelog) (#9810)

This commit is contained in:
Iván Ovejero 2024-06-20 11:02:30 +02:00 committed by GitHub
parent c0a6acaef6
commit 283d1ca583
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -85,7 +85,7 @@ export class License {
? async () => await this.usageMetricsService.collectUsageMetrics() ? async () => await this.usageMetricsService.collectUsageMetrics()
: async () => []; : async () => [];
const collectPassthroughData = isMainInstance const collectPassthroughData = isMainInstance
? async () => await this.usageMetricsService.getActiveWorkflowIds() ? async () => await this.usageMetricsService.collectPassthroughData()
: async () => ({}); : async () => ({});
const renewalEnabled = this.renewalEnabled(instanceType); const renewalEnabled = this.renewalEnabled(instanceType);

View file

@ -31,7 +31,7 @@ export class UsageMetricsService {
]; ];
} }
async getActiveWorkflowIds() { async collectPassthroughData() {
return { return {
activeWorkflowIds: await this.workflowRepository.getActiveIds(), activeWorkflowIds: await this.workflowRepository.getActiveIds(),
}; };

View file

@ -10,8 +10,8 @@ describe('UsageMetricsService', () => {
workflowRepository, workflowRepository,
); );
describe('getActiveWorkflowIds', () => { describe('collectPassthroughData', () => {
test('should return active workflow IDs', async () => { test('should return an object with active workflow IDs', async () => {
/** /**
* Arrange * Arrange
*/ */
@ -21,7 +21,7 @@ describe('UsageMetricsService', () => {
/** /**
* Act * Act
*/ */
const result = await usageMetricsService.getActiveWorkflowIds(); const result = await usageMetricsService.collectPassthroughData();
/** /**
* Assert * Assert