-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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 - Fix broken link in Rollup Jobs (#58802) #58929
BUG - Fix broken link in Rollup Jobs (#58802) #58929
Conversation
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
Pinging @elastic/es-ui (Team:Elasticsearch UI) |
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.
@justinjunodev thanks for the contribution. Great work! I left one comment if you could address before merging. Thanks!
@@ -9,7 +9,7 @@ let xPackBase = ''; | |||
|
|||
export function setEsBaseAndXPackBase(elasticWebsiteUrl, docLinksVersion) { | |||
esBase = `${elasticWebsiteUrl}guide/en/elasticsearch/reference/${docLinksVersion}`; | |||
xPackBase = `${elasticWebsiteUrl}guide/en/x-pack/${docLinksVersion}`; | |||
xPackBase = `${elasticWebsiteUrl}guide/en/elasticsearch/reference/${docLinksVersion}`; |
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.
Rather than changing the value of xPackBase
, can you use esBase
on L11 and delete the xpackBase
variable if it's no longer being used?
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.
Sure can. I also saw this and was curious if that was the correct/better approach here. Nonetheless, I just pushed an updated branch with the requested changes. Happy Monday.
@elasticmachine merge upstream |
jenkins test this |
jenkins test this |
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.
This looks great! Tested locally. Thanks for addressing my feedback @justinjunodev. I pushed a commit to your branch to fix a minor lint error. Once the build is green, I will go ahead and merge and backport the PR. Nice work!
Thanks, @alisonelizabeth! Thanks for letting me contribute again. 🥳🥳🥳 |
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
Summary
When creating a new rollup job, I noticed that the the Schedule section contained a broken link for getting more information on CRON expressions. More details for this issue can be found [here],(#58802) along with suggestions from team members that I followed to the make appropriate changes.
For maintainers