-
Notifications
You must be signed in to change notification settings - Fork 277
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
[Bug]Separate OpenSearch Min Version and Bundle Version in Input Manifest #1266
Comments
It's not necessarily the patch version that needs to be passed, it depends on whether OpenSearch is being built or consumed as a distribution. The fix is to "pass the version of OpenSearch being built". Local workaround probably of hard-coding |
Thanks @dblock I am currently just passing the Thanks. |
I think that's probably the easiest fix. but semantically we pass
Open to suggestions. |
I think my suggestion is over-engineering. Propose we hard-code the version of the dependency for dashboards-reports 1.1.1 as in opensearch-project/reporting#248 or opensearch-project/reporting#249. Which one do we prefer? |
After talking to @dblock I personally agree with opensearch-project/reporting#248 as it is the simplest way to get this issue resolved for patches. The opensearch-project/reporting#249 approach also runs but would add up confusion on why there is an additional build.sh just for 1.1 branch. We have agreed to open 248 and close 249 as a result. Thanks. |
Resolved now. |
Describe the bug
When building 1.1.1 based on 1.1.0 artifacts for opensearch (BE), we take every plugin from 1.1.0 zips except reports-scheduler, which requires a build from source for
1.1.1.0
version patches.The problem is, when building with gradle, build-tools is pointing to
1.1.1
which does not exist since we do not change min version.The param
opensearch.version
is the min version, not the plugin version and1.1.1
is passed to the build.sh, thus cause the build process trying to find1.1.1
version of build-tools/min in order to build.details logs
To reproduce
See above.
Expected behavior
The
patch
version should be passed to build.sh for opensearch plugins.Screenshots
If applicable, add screenshots to help explain your problem.
Host / Environment
No response
Additional context
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: