Skip to content

Commit

Permalink
removing old assets ref
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Oct 15, 2024
1 parent fe7ccdc commit f9eae88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions x-pack/test/apm_api_integration/common/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
ApmSynthtraceEsClient,
ApmSynthtraceKibanaClient,
LogsSynthtraceEsClient,
AssetsSynthtraceEsClient,
EntitiesSynthtraceEsClient,
createLogger,
LogLevel,
} from '@kbn/apm-synthtrace';
Expand Down Expand Up @@ -77,9 +77,9 @@ export interface CreateTest {
context: InheritedFtrProviderContext
) => Promise<LogsSynthtraceEsClient>;
synthtraceEsClient: (context: InheritedFtrProviderContext) => Promise<ApmSynthtraceEsClient>;
assetsSynthtraceEsClient: (
entitiesSynthtraceEsClient: (
context: InheritedFtrProviderContext
) => Promise<AssetsSynthtraceEsClient>;
) => Promise<EntitiesSynthtraceEsClient>;
apmSynthtraceEsClient: (context: InheritedFtrProviderContext) => Promise<ApmSynthtraceEsClient>;
synthtraceKibanaClient: (
context: InheritedFtrProviderContext
Expand Down Expand Up @@ -126,8 +126,8 @@ export function createTestConfig(
logger: createLogger(LogLevel.info),
refreshAfterIndex: true,
}),
assetsSynthtraceEsClient: (context: InheritedFtrProviderContext) =>
new AssetsSynthtraceEsClient({
entitiesSynthtraceEsClient: (context: InheritedFtrProviderContext) =>
new EntitiesSynthtraceEsClient({
client: context.getService('es'),
logger: createLogger(LogLevel.info),
refreshAfterIndex: true,
Expand Down

0 comments on commit f9eae88

Please sign in to comment.