-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not require id & description when creating a logstash pipeline #76616
Merged
mshustov
merged 6 commits into
elastic:master
from
mshustov:issue-76611-fix-logstash-validation
Sep 4, 2020
Merged
Do not require id & description when creating a logstash pipeline #76616
mshustov
merged 6 commits into
elastic:master
from
mshustov:issue-76611-fix-logstash-validation
Sep 4, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mshustov
added
Team:Core
Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc
release_note:fix
v8.0.0
v7.10.0
v7.8.2
v7.9.2
labels
Sep 3, 2020
Pinging @elastic/kibana-platform (Team:Platform) |
mshustov
commented
Sep 3, 2020
@@ -125,11 +125,11 @@ class PipelineEditorUi extends React.Component { | |||
|
|||
onPipelineSave = () => { | |||
const { pipelineService, toastNotifications, intl } = this.props; | |||
const { id } = this.state.pipeline; | |||
const { id, ...pipelineToStore } = this.state.pipeline; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id
is not expected in the request body
joshdover
approved these changes
Sep 4, 2020
💚 Build SucceededBuild metricsasync chunks size
History
To update your PR or re-run it, just comment with: |
mshustov
added a commit
to mshustov/kibana
that referenced
this pull request
Sep 4, 2020
…astic#76616) * do not requie id & desc * remove id validation, it's not used in logic anyway * no id in tests * remove another wrong id usage
This was referenced Sep 4, 2020
mshustov
added a commit
to mshustov/kibana
that referenced
this pull request
Sep 4, 2020
…astic#76616) * do not requie id & desc * remove id validation, it's not used in logic anyway * no id in tests * remove another wrong id usage
mshustov
added a commit
to mshustov/kibana
that referenced
this pull request
Sep 4, 2020
…astic#76616) * do not requie id & desc * remove id validation, it's not used in logic anyway * no id in tests * remove another wrong id usage
gmmorris
added a commit
to gmmorris/kibana
that referenced
this pull request
Sep 4, 2020
* master: (47 commits) Do not require id & description when creating a logstash pipeline (elastic#76616) Remove commented src/core/tsconfig file (elastic#76792) Replaced whitelistedHosts with allowedHosts in actions ascii docs (elastic#76731) [Dashboard First] Genericize Attribute Service (elastic#76057) [ci-metrics] unify distributable file count metrics (elastic#76448) [Security Solution][Detections] Handle conflicts on alert status update (elastic#75492) [eslint] convert to @typescript-eslint/no-unused-expressions (elastic#76471) [DOCS] Add default time range filter to advanced settings (elastic#76414) [Security Solution] Refactor NetworkTopNFlow to use Search Strategy (elastic#76249) [Dashboard] Update Index Patterns when Child Index Patterns Change (elastic#76356) [ML] Add option to Advanced Settings to set default time range filter for AD jobs (elastic#76347) Add CSM app to CODEOWNERS (elastic#76793) [Security Solution][Exceptions] - Updates exception item find sort field (elastic#76685) [Security Solution][Detections][Tech Debt] - Move to using common io-ts types (elastic#75009) [Lens] Drag dimension to replace (elastic#75895) URI encode the index names we fetch in the fetchIndices lib function. (elastic#76584) [Security Solution] Resolver retrieve entity id of documents without field mapped (elastic#76562) [Ingest Manager] validate agent route using AJV instead kbn-config-schema (elastic#76546) Updated non-dev usages of node-forge (elastic#76699) [Ingest Pipelines] Processor forms for processors K-S (elastic#75638) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backported
release_note:fix
Team:Core
Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc
v7.8.2
v7.9.2
v7.10.0
v8.0.0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #76611
Checklist
Release notes
Fixed bug preventing logstash pipeline creation without specifying
id
&description
explicitly.