Skip to content

Commit 9a6d537

Browse files
authored
Merge pull request #1815 from wheels-dev/output-format
Output format
2 parents 2762e6b + 586a2f8 commit 9a6d537

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+4862
-2702
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,20 @@ jobs:
214214
# Try a basic curl to see if service responds
215215
curl -v --connect-timeout 5 "http://localhost:${{ steps.test-vars.outputs.port }}/" || true
216216
217+
- name: Patch Adobe CF serialfilter.txt for Oracle JDBC
218+
if: ${{ (matrix.cfengine == 'adobe2023' || matrix.cfengine == 'adobe2025') && matrix.dbengine == 'oracle' }}
219+
run: |
220+
docker exec wheels-${{ matrix.cfengine }}-1 sh -c "echo ';oracle.sql.converter.**;oracle.sql.**;oracle.jdbc.**' >> /wheels-test-suite/.engine/${{ matrix.cfengine }}/WEB-INF/cfusion/lib/serialfilter.txt"
221+
222+
- name: Restart CF Engine
223+
if: ${{ (matrix.cfengine == 'adobe2023' || matrix.cfengine == 'adobe2025') && matrix.dbengine == 'oracle' }}
224+
run: |
225+
docker restart wheels-${{ matrix.cfengine }}-1
226+
217227
- name: Wait for Oracle to be ready
218228
if: ${{ matrix.dbengine == 'oracle' }}
219229
run: sleep 120
220-
230+
221231
- name: Running onServerInstall Script for Adobe2021, Adobe2023, and Adobe2025
222232
if: ${{ matrix.cfengine == 'adobe2021' || matrix.cfengine == 'adobe2023' || matrix.cfengine == 'adobe2025' }}
223233
run: |

cli/src/commands/wheels/config/diff.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ component extends="commandbox.modules.wheels-cli.commands.wheels.base" {
252252
// Display environment variable differences
253253
if (arguments.compareEnv && StructKeyExists(arguments.differences, "env")) {
254254
if (arguments.compareSettings && StructKeyExists(arguments.differences, "settings")) {
255-
detailOutput.separator();
255+
detailOutput.line();
256256
}
257257
detailOutput.subHeader("ENVIRONMENT VARIABLES", 50);
258258
displayDifferenceSection(arguments.differences.env, arguments.env1, arguments.env2, arguments.changesOnly, "env");
@@ -307,7 +307,7 @@ component extends="commandbox.modules.wheels-cli.commands.wheels.base" {
307307
// Overall summary
308308
local.grandTotal = local.totalIdentical + local.totalDifferent + local.totalUnique;
309309
if (local.grandTotal > 0) {
310-
detailOutput.separator();
310+
detailOutput.line();
311311
detailOutput.output("Overall:");
312312
detailOutput.metric("Total configurations", local.grandTotal);
313313
detailOutput.metric("Identical", local.totalIdentical);

cli/src/commands/wheels/dbmigrate/latest.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ component aliases='wheels db latest,wheels db migrate' extends="../base" {
5050
}
5151

5252
// Add a separator before the info command output
53-
detailOutput.separator();
53+
detailOutput.line();
5454
command('wheels dbmigrate info').run();
5555
}
5656

cli/src/commands/wheels/dbmigrate/up.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ component aliases='wheels db up' extends="../base" {
4141
} else {
4242
detailOutput.statusWarning("No more versions to go to?");
4343
}
44-
detailOutput.separator();
44+
detailOutput.line();
4545
command('wheels dbmigrate info').run();
4646
}
4747

0 commit comments

Comments
 (0)