-
Notifications
You must be signed in to change notification settings - Fork 141
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
Fix Alerting tool runtime failure on ClassNotFoundException #1741
Fix Alerting tool runtime failure on ClassNotFoundException #1741
Conversation
Signed-off-by: Arjun kumar Giri <arjung@amazon.com>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## feature/agent_framework_dev #1741 +/- ##
=================================================================
+ Coverage 68.60% 68.96% +0.36%
- Complexity 2591 2610 +19
=================================================================
Files 239 241 +2
Lines 12757 12815 +58
Branches 1284 1288 +4
=================================================================
+ Hits 8752 8838 +86
+ Misses 3404 3371 -33
- Partials 601 606 +5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -48,7 +48,9 @@ dependencies { | |||
implementation("ai.djl.onnxruntime:onnxruntime-engine:0.21.0") { | |||
exclude group: "com.microsoft.onnxruntime", module: "onnxruntime" | |||
} | |||
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}" | |||
implementation("org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}") { | |||
exclude group: "org.jetbrains", module: "annotations" |
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.
[nit] can we add a comment why are we excluding this? I saw in the PR description, but I think better to add here?
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.
Will merge this PR to unblock the testing, @arjunkumargiri you can add some comments in next PR
44118ef
into
opensearch-project:feature/agent_framework_dev
Description
Fix Alerting tool runtime failure on ClassNotFoundException.
Issues Resolved
Need to exclude annotation jar as it was resulting in failure
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.