Conversation
|
Copyright Validation Results ⏭️ Skipped (Excluded) Files
✅ All files have valid copyright headers! |
There was a problem hiding this comment.
Pull Request Overview
This PR adds logging statements to improve visibility during the Docker container startup process in the Jenkins pipeline. The changes add echo statements to display which Docker image is being used and indicate when the system is waiting for MarkLogic to be ready.
- Added echo statement to display the MarkLogic Docker image being used
- Added informational message about the 60-second wait period for MarkLogic startup
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Jenkinsfile
Outdated
| docker-compose down -v || true | ||
| sudo /usr/local/sbin/mladmin cleandata | ||
| cd node-client-api | ||
| echo "Running docker compose with MarkLogic image: ''' + markLogicDockerImage + '''" |
There was a problem hiding this comment.
String concatenation syntax is incorrect. The triple quotes should be double quotes for proper Groovy string interpolation: echo \"Running docker compose with MarkLogic image: ${markLogicDockerImage}\"
There was a problem hiding this comment.
Copilot, this is your code you generated for me in VS Code!
bca4ae0 to
721116a
Compare
|
Please ignore the first jenkins run since it had permission issues on the machine. The second run looks good. |
No description provided.