Skip to content

Commit

Permalink
fix checking
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisecheng committed Nov 2, 2020
1 parent a5295cb commit 3ed60f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions x-pack/plugins/logstash/server/models/pipeline/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ interface DownstreamPipeline {
description?: string;
pipeline: string;
settings?: Record<string, any>;
metadata: Record<string, any>;
}
/**
* This model deals with a pipeline object from ES and converts it to Kibana downstream
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/api_integration/apis/logstash/pipeline/save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function ({ getService }: FtrProviderContext) {
pipeline: 'input { generator {} }\n\n output { stdout {} }',
metadata: {
version: '2',
type: 'logstash_pipeline'
type: 'logstash_pipeline',
},
})
.expect(204);
Expand Down

0 comments on commit 3ed60f0

Please sign in to comment.