-
Notifications
You must be signed in to change notification settings - Fork 74
MLE-27077 Reverting recent changes to Jenkinsfile #1901
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,9 +4,9 @@ services: | |
|
|
||
| marklogic: | ||
| image: "${MARKLOGIC_IMAGE}" | ||
| platform: "${PLATFORM:-linux/amd64}" | ||
| platform: linux/amd64 | ||
| environment: | ||
| - INSTALL_CONVERTERS=${MARKLOGIC_INSTALL_CONVERTERS:-true} | ||
| - INSTALL_CONVERTERS=true | ||
|
Comment on lines
+7
to
+9
|
||
| - MARKLOGIC_INIT=true | ||
| - MARKLOGIC_ADMIN_USERNAME=admin | ||
| - MARKLOGIC_ADMIN_PASSWORD=admin | ||
|
|
@@ -21,4 +21,4 @@ services: | |
| - "8010-8015:8010-8015" # Range of ports used by app servers, at least one of which - 8015 - is created by a test. | ||
|
|
||
| volumes: | ||
| marklogicLogs: | ||
| marklogicLogs: | ||
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.
mlWaitTillReadyis executed twice with a fixed sleep in between. This adds unnecessary time to every run and can mask timing issues. Consider runningmlWaitTillReadyonce (or rely on its own retry/backoff) and remove the extra sleep unless there’s a specific, documented reason to keep both.