File tree Expand file tree Collapse file tree
plugins/shared/streams/server
lib/streams/component_templates
routes/internal/streams/schema
test/api_integration_deployment_agnostic/apis/streams Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ describe('generateLayer', () => {
259259 } ) ;
260260 } ) ;
261261
262- it ( 'should skip doc-only fields (no type) and not include them in mappings' , ( ) => {
262+ it ( 'should skip doc-only fields (no type) and not include them in mappings' , ( ) => {
263263 const definitionWithDocOnlyField : Streams . WiredStream . Definition = {
264264 name : 'logs.test' ,
265265 description : '' ,
Original file line number Diff line number Diff line change @@ -371,8 +371,7 @@ export const schemaFieldsConflictsRoute = createServerRoute({
371371 // Only check conflicts for fields that affect ES mappings
372372 // Skip system fields and doc-only overrides (no type)
373373 const userFieldDefinitions = params . body . field_definitions . filter (
374- ( field ) : field is typeof field & { type : string } =>
375- ! ! field . type && field . type !== 'system'
374+ ( field ) : field is typeof field & { type : string } => ! ! field . type && field . type !== 'system'
376375 ) ;
377376
378377 if ( userFieldDefinitions . length === 0 ) {
Original file line number Diff line number Diff line change @@ -989,7 +989,7 @@ export default function ({ getService }: DeploymentAgnosticFtrProviderContext) {
989989 await disableStreams ( apiClient ) ;
990990 } ) ;
991991
992- it ( 'persists description-only overrides without freezing inherited mappings' , async ( ) => {
992+ it ( 'persists description-only overrides without freezing inherited mappings' , async ( ) => {
993993 const parentStream = 'logs.otel.doconlyparent' ;
994994 const childStream = `${ parentStream } .child` ;
995995 const fieldName = 'attributes.abc' ;
You can’t perform that action at this time.
0 commit comments