MLE-24733 - revert test-complete-app#1009
MLE-24733 - revert test-complete-app#1009BillFarber wants to merge 1 commit intomarklogic:developfrom
Conversation
Moved the working version of the mlDeploy stuff to test-complete-app-mlDeploy
|
Copyright Validation Results ⏭️ Skipped (Excluded) Files
✅ Valid Files
✅ All files have valid copyright headers! |
There was a problem hiding this comment.
Pull Request Overview
This PR reverts changes made to the test-complete-app directory and moves the mlDeploy-related functionality to a new test-complete-app-mlDeploy directory, effectively separating deployment concerns from the base test application.
Key changes:
- Reverted
test-complete-appto its original state by removing deployment properties and Gradle tasks - Created new
test-complete-app-mlDeploydirectory with full deployment configuration including SSL setup - Fixed database client naming in optic test file from
dbSchemasClienttodbModClient
Reviewed Changes
Copilot reviewed 11 out of 70 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| test-complete/nodejs-optic-generate-views.js | Updated database client variable name and database reference from Schemas to Modules |
| test-complete-app/gradle.properties | Removed mlDeploy-specific properties (modules database, schemas database, REST port) |
| test-complete-app/build.gradle | Removed curl tasks for people and companies data loading |
| test-complete-app-mlDeploy/* | Added new directory with complete mlDeploy configuration including REST API server setup, SSL certificate templates, and Gradle wrapper |
| .copyrightconfig | Added test-complete-app-mlDeploy to files excluded from copyright checks |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| var dbSchemasClient = marklogic.createDatabaseClient({ | ||
| database: 'Schemas', | ||
| var dbModClient = marklogic.createDatabaseClient({ | ||
| database: dbName + 'Modules', |
There was a problem hiding this comment.
String concatenation of dbName + 'Modules' is missing a separator. This will result in database names like 'nodeOpticFunctionalTestModules' without the expected hyphen or separator if dbName is something like 'nodeOpticFunctionalTest'. Verify that dbName includes the trailing separator, or add one explicitly: dbName + '-Modules'.
| database: dbName + 'Modules', | |
| database: dbName + '-Modules', |
Moved the working version of the mlDeploy stuff to test-complete-app-mlDeploy