Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions flow-diff/src/main/java/com/snowflake/openflow/FlowDiff.java
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,10 @@ public static void main(String[] args) throws IOException {
System.out.println("- A label has been updated and its text has been changed from "
+ printFromTo(diff.getValueA().toString(), diff.getValueB().toString()));
break;
case EXECUTION_MODE_CHANGED:
System.out.println("- In " + printComponent(diff.getComponentA())
+ ", the Execution Mode changed from `" + diff.getValueA() + "` to `" + diff.getValueB() + "`");
break;

default:
System.out.println("- " + diff.getDescription() + " (" + diff.getDifferenceType() + ")");
Expand Down