-
Notifications
You must be signed in to change notification settings - Fork 543
iserver-test: Fix genpath script due to recent EC API change #20126
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
base: main
Are you sure you want to change the base?
Conversation
🤖 GitHub commentsJust comment with:
|
|
This pull request does not have a backport label. Could you fix it @ericywl? 🙏
|
carsonip
left a comment
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.
That's weird, it should be since we get the valid upgrade paths from the EC API itself. I will test it out myself and check with the ECH(?) team. |
💚 Build Succeeded
History
cc @ericywl |
|
I tried the iserver-test and there seems to be an error with Kibana? I will try to follow up on this next working day. On the other hand, the smoke test is also broken due to the API change: #20137. |

Closes #20119.
The EC API that we use to get available stack versions was recently changed to remove previously release SNAPSHOTs. This caused our integration server test to fail due to enforcing the upgrade path to be full SNAPSHOTs (for legacy reason, there's no real explanation for it) e.g.
9.2.0-SNAPSHOT -> 9.3.0-SNAPSHOT.Since SNAPSHOTs are now only available for future releases, we will only use SNAPSHOTs as the tested version, and the previous versions in the upgrade path will use released ones instead. In our previous example, we want to test
9.3.0-SNAPSHOT, so the upgrade path will instead be9.2.0 -> 9.3.0-SNAPSHOTsince9.2.0is a released version.