Skip to content
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

Regression: Fix assigning to nil map in DeepMerge #18143

Merged
merged 3 commits into from
May 4, 2020

Conversation

urso
Copy link

@urso urso commented Apr 30, 2020

  • Bug

What does this PR do?

If a Value in a MapStr itself has the type MapStr but is nil, we will
have a panic in DeepUpdate. This change fixes the Update functionality
to handle typed nil values.

Why is it important?

Do not panic the Beat if we have an event with nil values.

Checklist

  • My code follows the style guidelines of this project
    - [ ] I have commented my code, particularly in hard-to-understand areas
    - [ ] I have made corresponding changes to the documentation
    - [ ] I have made corresponding change to the default configuration files
  • I have added tests that prove my fix is effective or that my feature works
  • I have added an entry in CHANGELOG.next.asciidoc or CHANGELOG-developer.next.asciidoc.

Related issues

If a Value in a MapStr itself has the type MapStr but is nil, we will
have a panic in DeepUpdate. This change fixes the Update functionality
to handle typed nil values.
@urso urso added bug review libbeat needs_backport PR is waiting to be backported to other branches. Team:Services (Deprecated) Label for the former Integrations-Services team labels Apr 30, 2020
@elasticmachine
Copy link
Collaborator

Pinging @elastic/integrations-services (Team:Services)

@botelastic botelastic bot added the needs_team Indicates that the issue/PR needs a Team:* label label Apr 30, 2020
@ycombinator ycombinator self-requested a review April 30, 2020 21:18
@@ -102,9 +102,17 @@ func deepUpdateValue(old interface{}, val MapStr, overwrite bool) interface{} {

switch sub := old.(type) {
case MapStr:
if sub == nil {
return val
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Surprised that this isn't caught already by the if old == nil check at the start of this function. 🤔

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just found https://groups.google.com/forum/#!topic/golang-nuts/wnH302gBa4I/discussion.

Should we remove the code on lines 99-101?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is nil, and then there is nil :)

An interface value is a tuple (type, value). An interface is nil, if and only if both type and value are nil. This is why the initial check fails here. We have a type (type MapStr, nil). The switch statement only looks for type, unpacks it, and we finally have the nil value in sub. This is when the call panics.

Removing line 99 should be safe. E.g.: https://play.golang.org/p/uajkDxQW9qH

@elasticmachine
Copy link
Collaborator

elasticmachine commented May 1, 2020

💚 Build Succeeded

Pipeline View Test View Changes Artifacts preview stats

Expand to view the summary

Build stats

Test stats 🧪

Test Results
Failed 0
Passed 7688
Skipped 1210
Total 8898

Steps errors

Expand to view the steps failures

  • Name: Make -C generator/_templates/metricbeat test

    • Description: make -C generator/_templates/metricbeat test

    • Result: FAILURE

    • Duration: 2 min 14 sec<

    • Start Time: 2020-05-02T12:00:46.274+0000

  • Name: Make -C generator/_templates/beat test

    • Description: make -C generator/_templates/beat test

    • Result: FAILURE

    • Duration: 1 min 53 sec<

    • Start Time: 2020-05-02T12:04:08.992+0000

  • Name: Make -C generator/_templates/metricbeat test

    • Description: make -C generator/_templates/metricbeat test

    • Result: FAILURE

    • Duration: 1 min 27 sec<

    • Start Time: 2020-05-02T12:07:19.787+0000

  • Name: Make -C generator/_templates/beat test

    • Description: make -C generator/_templates/beat test

    • Result: FAILURE

    • Duration: 2 min 34 sec<

    • Start Time: 2020-05-02T12:10:29.125+0000

@andresrc andresrc added [zube]: Inbox [zube]: In Review and removed needs_team Indicates that the issue/PR needs a Team:* label [zube]: Inbox labels May 2, 2020
@kvch kvch self-assigned this May 4, 2020
@urso urso added the v7.8.0 label May 4, 2020
Copy link
Contributor

@ycombinator ycombinator left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks for catching and fixing <3.

@elasticmachine
Copy link
Collaborator

💔 Build Failed

Pipeline View Test View Changes Artifacts preview stats

Expand to view the summary

Build stats

Test stats 🧪

Test Results
Failed 0
Passed 0
Skipped 0
Total 0

Steps errors

Expand to view the steps failures

  • Name: Report to Codecov

    • Description: curl -sSLo codecov https://codecov.io/bash for i in auditbeat filebeat heartbeat libbeat metricbeat packetbeat winlogbeat journalbeat do FILE="${i}/build/coverage/full.cov" if [ -f "${FILE}" ]; then bash codecov -f "${FILE}" fi done

    • Result: FAILURE

    • Duration: 0 min 11 sec<

    • Start Time: 2020-05-04T18:08:43.346+0000

  • Name: Report to Codecov

    • Description: curl -sSLo codecov https://codecov.io/bash for i in auditbeat filebeat heartbeat libbeat metricbeat packetbeat winlogbeat journalbeat do FILE="${i}/build/coverage/full.cov" if [ -f "${FILE}" ]; then bash codecov -f "${FILE}" fi done

    • Result: FAILURE

    • Duration: 2 min 11 sec<

    • Start Time: 2020-05-04T18:22:05.043+0000

  • Name: Report to Codecov

    • Description: curl -sSLo codecov https://codecov.io/bash for i in auditbeat filebeat heartbeat libbeat metricbeat packetbeat winlogbeat journalbeat do FILE="${i}/build/coverage/full.cov" if [ -f "${FILE}" ]; then bash codecov -f "${FILE}" fi done

    • Result: FAILURE

    • Duration: 2 min 24 sec<

    • Start Time: 2020-05-04T18:24:15.740+0000

  • Name: Make -C generator/_templates/metricbeat test

    • Description: make -C generator/_templates/metricbeat test

    • Result: FAILURE

    • Duration: 1 min 53 sec<

    • Start Time: 2020-05-04T17:54:17.292+0000

  • Name: Make -C generator/_templates/beat test

    • Description: make -C generator/_templates/beat test

    • Result: FAILURE

    • Duration: 1 min 53 sec<

    • Start Time: 2020-05-04T17:56:20.054+0000

  • Name: Make -C generator/_templates/metricbeat test

    • Description: make -C generator/_templates/metricbeat test

    • Result: FAILURE

    • Duration: 3 min 58 sec<

    • Start Time: 2020-05-04T17:59:58.513+0000

  • Name: Make -C generator/_templates/beat test

    • Description: make -C generator/_templates/beat test

    • Result: FAILURE

    • Duration: 2 min 3 sec<

    • Start Time: 2020-05-04T18:06:25.139+0000

  • Name: Report to Codecov

    • Description: curl -sSLo codecov https://codecov.io/bash for i in auditbeat filebeat heartbeat libbeat metricbeat packetbeat winlogbeat journalbeat do FILE="${i}/build/coverage/full.cov" if [ -f "${FILE}" ]; then bash codecov -f "${FILE}" fi done

    • Result: FAILURE

    • Duration: 1 min 28 sec<

    • Start Time: 2020-05-04T18:08:32.542+0000

Log output

Expand to view the last 100 lines of log output

[2020-05-04T19:13:43.398Z] 	at jenkins.util.ContextResettingExecutorService$1.run(ContextResettingExecutorService.java:28)
[2020-05-04T19:13:43.398Z] 	at jenkins.security.ImpersonatingExecutorService$1.run(ImpersonatingExecutorService.java:59)
[2020-05-04T19:13:43.398Z] 	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
[2020-05-04T19:13:43.398Z] 	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
[2020-05-04T19:13:43.398Z] 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
[2020-05-04T19:13:43.398Z] 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
[2020-05-04T19:13:43.398Z] 	at java.lang.Thread.run(Thread.java:748)
[2020-05-04T19:13:43.398Z] 
[2020-05-04T19:13:43.579Z] Failed in branch Metricbeat x-pack
[2020-05-04T19:13:43.859Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats
[2020-05-04T19:13:44.560Z] + find . -type f -name TEST*.xml -path */build/* -delete
[2020-05-04T19:13:44.666Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Lint
[2020-05-04T19:13:44.903Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Elastic-Agent-Mac-OS-X
[2020-05-04T19:13:45.128Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Elastic-Agent-x-pack
[2020-05-04T19:13:45.318Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Filebeat-Mac-OS-X
[2020-05-04T19:13:45.533Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-Mac-OS-X
[2020-05-04T19:13:45.794Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Elastic-Agent-x-pack-Windows
[2020-05-04T19:13:46.105Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Winlogbeat-oss
[2020-05-04T19:13:46.378Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Dockerlogbeat
[2020-05-04T19:13:46.613Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Generators-Metricbeat-Linux
[2020-05-04T19:13:46.877Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Heartbeat-oss
[2020-05-04T19:13:47.074Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Auditbeat-x-pack
[2020-05-04T19:13:47.401Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Journalbeat-oss
[2020-05-04T19:13:47.584Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Generators-Beat-Linux
[2020-05-04T19:13:47.788Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-OSS-Unit-tests
[2020-05-04T19:13:48.076Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Functionbeat-x-pack
[2020-05-04T19:13:48.267Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Auditbeat-Linux
[2020-05-04T19:13:48.457Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-crosscompile
[2020-05-04T19:13:48.690Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Libbeat-x-pack
[2020-05-04T19:13:48.992Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Heartbeat-Mac-OS-X
[2020-05-04T19:13:49.229Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Auditbeat-crosscompile
[2020-05-04T19:13:49.429Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Generators-Metricbeat-Mac-OS-X
[2020-05-04T19:13:49.628Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Packetbeat-oss
[2020-05-04T19:13:49.903Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Functionbeat-Mac-OS-X-x-pack
[2020-05-04T19:13:50.119Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Filebeat-Windows
[2020-05-04T19:13:50.410Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Generators-Beat-Mac-OS-X
[2020-05-04T19:13:50.634Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Filebeat-x-pack
[2020-05-04T19:13:50.890Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Auditbeat-Mac-OS-X
[2020-05-04T19:13:51.165Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Winlogbeat-Windows-x-pack
[2020-05-04T19:13:51.454Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-Windows
[2020-05-04T19:13:51.827Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Filebeat-oss
[2020-05-04T19:13:52.019Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-OSS-Integration-tests
[2020-05-04T19:13:52.254Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Libbeat-oss
[2020-05-04T19:13:52.456Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Heartbeat-Windows
[2020-05-04T19:13:52.693Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Winlogbeat-Windows
[2020-05-04T19:13:52.901Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-Python-integration-tests
[2020-05-04T19:13:53.149Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Auditbeat-Windows
[2020-05-04T19:13:53.405Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Functionbeat-Windows
[2020-05-04T19:13:53.658Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Libbeat-crosscompile
[2020-05-04T19:13:53.904Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Libbeat-stress-tests
[2020-05-04T19:13:54.089Z] Running in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack
[2020-05-04T19:13:54.909Z] + cat
[2020-05-04T19:13:54.909Z] + /usr/local/bin/runbld ./runbld-script
[2020-05-04T19:13:54.909Z] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
[2020-05-04T19:14:02.699Z] runbld>>> runbld started
[2020-05-04T19:14:02.699Z] runbld>>> 1.6.11/a66728ff8f4356963772e6e6d2069392fa06acbe
[2020-05-04T19:14:03.930Z] runbld>>> The following profiles matched the job 'Beats/beats-beats-mbp/PR-18143' in order of occurrence in the config (last value wins).
[2020-05-04T19:14:05.205Z] runbld>>> Debug logging enabled.
[2020-05-04T19:14:05.206Z] runbld>>> Storing result
[2020-05-04T19:14:05.206Z] runbld>>> Store result: created {:total 2, :successful 2, :failed 0} 1
[2020-05-04T19:14:05.206Z] runbld>>> BUILD: https://c150076387b5421f9154dfbf536e5c60.us-west1.gcp.cloud.es.io:9243/build-1587637540455/t/20200504191404-C234EBEB
[2020-05-04T19:14:05.206Z] runbld>>> Adding system facts.
[2020-05-04T19:14:06.549Z] runbld>>> Adding vcs info for the latest commit:  aa79b57ce202bab6b6d7810c27d3dd57c3a1dad1
[2020-05-04T19:14:06.549Z] runbld>>> >>>>>>>>>>>> SCRIPT EXECUTION BEGIN >>>>>>>>>>>>
[2020-05-04T19:14:06.549Z] runbld>>> Adding /usr/lib/jvm/java-8-openjdk-amd64/bin to the path.
[2020-05-04T19:14:06.549Z] Processing JUnit reports with runbld...
[2020-05-04T19:14:06.549Z] + echo 'Processing JUnit reports with runbld...'
[2020-05-04T19:14:06.941Z] runbld>>> <<<<<<<<<<<< SCRIPT EXECUTION END <<<<<<<<<<<<
[2020-05-04T19:14:06.941Z] runbld>>> DURATION: 26ms
[2020-05-04T19:14:06.941Z] runbld>>> STDOUT: 40 bytes
[2020-05-04T19:14:06.941Z] runbld>>> STDERR: 49 bytes
[2020-05-04T19:14:06.941Z] runbld>>> WRAPPED PROCESS: SUCCESS (0)
[2020-05-04T19:14:06.942Z] runbld>>> Searching for build metadata in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats
[2020-05-04T19:14:08.214Z] runbld>>> Storing build metadata: 
[2020-05-04T19:14:08.214Z] runbld>>> Adding test report.
[2020-05-04T19:14:08.214Z] runbld>>> Searching for junit test output files with the pattern: TEST-.*\.xml$ in: /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats
[2020-05-04T19:14:09.551Z] runbld>>> Found 102 test output files
[2020-05-04T19:14:09.932Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-openmetrics.xml
[2020-05-04T19:14:10.336Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-istio.xml
[2020-05-04T19:14:10.336Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-iis.xml
[2020-05-04T19:14:10.336Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-activemq.xml
[2020-05-04T19:14:10.336Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-tomcat.xml
[2020-05-04T19:14:10.336Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-x-pack/x-pack/metricbeat/build/TEST-go-integration-cloudfoundry.xml
[2020-05-04T19:14:11.184Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-OSS-Integration-tests/metricbeat/build/TEST-go-integration-windows.xml
[2020-05-04T19:14:11.184Z] runbld>>> No testsuite node found in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143/src/github.com/elastic/beats/Metricbeat-OSS-Integration-tests/metricbeat/build/TEST-go-integration-graphite.xml
[2020-05-04T19:14:11.633Z] runbld>>> Test output logs contained: Errors: 0 Failures: 0 Tests: 8767 Skipped: 1006
[2020-05-04T19:14:11.633Z] runbld>>> Storing result
[2020-05-04T19:14:11.633Z] runbld>>> FAILURES: 0
[2020-05-04T19:14:11.633Z] runbld>>> Store result: updated {:total 2, :successful 2, :failed 0} 2
[2020-05-04T19:14:11.633Z] runbld>>> BUILD: https://c150076387b5421f9154dfbf536e5c60.us-west1.gcp.cloud.es.io:9243/build-1587637540455/t/20200504191404-C234EBEB
[2020-05-04T19:14:11.633Z] runbld>>> Email notification disabled by environment variable.
[2020-05-04T19:14:11.633Z] runbld>>> Slack notification disabled by environment variable.
[2020-05-04T19:14:19.143Z] Running on worker-395930 in /var/lib/jenkins/workspace/Beats_beats-beats-mbp_PR-18143
[2020-05-04T19:14:19.680Z] [INFO] getVaultSecret: Getting secrets
[2020-05-04T19:14:19.812Z] Masking supported pattern matches of $VAULT_ADDR or $VAULT_ROLE_ID or $VAULT_SECRET_ID
[2020-05-04T19:14:22.676Z] + chmod 755 generate-build-data.sh
[2020-05-04T19:14:22.676Z] + ./generate-build-data.sh https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats-beats-mbp/PR-18143/ https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats-beats-mbp/PR-18143/runs/4 ABORTED 7557880
[2020-05-04T19:14:22.676Z] INFO: curl https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats-beats-mbp/PR-18143/runs/4/steps/?limit=10000 -o steps-info.json
[2020-05-04T19:14:24.416Z] INFO: curl https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats-beats-mbp/PR-18143/runs/4/tests/?status=FAILED -o tests-errors.json
[2020-05-04T19:14:26.241Z] INFO: curl https://beats-ci.elastic.co/blue/rest/organizations/jenkins/pipelines/Beats/beats-beats-mbp/PR-18143/runs/4/log/ -o pipeline-log.txt

@urso
Copy link
Author

urso commented May 4, 2020

Failures are unrelated (generators fail + codecov upload failed after CI run did succeed).

@urso urso merged commit 68fc3c4 into elastic:master May 4, 2020
@urso urso deleted the mapstr-value-is-nil branch May 4, 2020 20:16
urso pushed a commit to urso/beats that referenced this pull request May 4, 2020
@urso urso removed the needs_backport PR is waiting to be backported to other branches. label May 4, 2020
urso pushed a commit that referenced this pull request May 5, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug libbeat review Team:Services (Deprecated) Label for the former Integrations-Services team v7.8.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants