Don't register destructiveDistroTest.docker twice#6930
Merged
owaiskazi19 merged 1 commit intoopensearch-project:mainfrom Apr 3, 2023
Merged
Don't register destructiveDistroTest.docker twice#6930owaiskazi19 merged 1 commit intoopensearch-project:mainfrom
owaiskazi19 merged 1 commit intoopensearch-project:mainfrom
Conversation
Signed-off-by: Daniel Widdis <widdis@gmail.com>
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Member
Author
reta
approved these changes
Apr 2, 2023
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #6930 +/- ##
============================================
+ Coverage 70.66% 70.72% +0.06%
- Complexity 59231 59282 +51
============================================
Files 4812 4812
Lines 283761 283759 -2
Branches 40917 40918 +1
============================================
+ Hits 200519 200695 +176
+ Misses 66784 66618 -166
+ Partials 16458 16446 -12
... and 492 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
owaiskazi19
approved these changes
Apr 3, 2023
opensearch-trigger-bot bot
pushed a commit
that referenced
this pull request
Apr 3, 2023
Signed-off-by: Daniel Widdis <widdis@gmail.com> (cherry picked from commit bcbb561) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
mitrofmep
pushed a commit
to mitrofmep/OpenSearch
that referenced
this pull request
Apr 5, 2023
…#6930) Signed-off-by: Daniel Widdis <widdis@gmail.com> Signed-off-by: Valentin Mitrofanov <mitrofmep@gmail.com>
saratvemulapalli
pushed a commit
that referenced
this pull request
Apr 6, 2023
(cherry picked from commit bcbb561) Signed-off-by: Daniel Widdis <widdis@gmail.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
6 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
The
destructiveDistroTest.dockertask was already registered here:OpenSearch/buildSrc/src/main/java/org/opensearch/gradle/test/DistroTestPlugin.java
Line 245 in c85d33e
Which is called here:
OpenSearch/buildSrc/src/main/java/org/opensearch/gradle/test/DistroTestPlugin.java
Line 107 in c85d33e
Which causes duplicate registration here:
OpenSearch/buildSrc/src/main/java/org/opensearch/gradle/test/DistroTestPlugin.java
Line 124 in c85d33e
This fixes the
TODOby adding a test whether a task is already registered in place of the exception catch/warning.Issues Resolved
Fixes #1640 (you're welcome).
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.