We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f54fc4 commit 3f90abcCopy full SHA for 3f90abc
core/src/main/java/io/temporal/samples/packetdelivery/PacketDelivery.java
@@ -83,12 +83,10 @@ public void processDelivery() {
83
try {
84
cancellationScope.run();
85
} catch (Exception e) {
86
- System.out.println("*************** E1: " + e.getClass().getName());
87
if (e instanceof ActivityFailure) {
88
ActivityFailure activityFailure = (ActivityFailure) e;
89
if (activityFailure.getCause() instanceof CanceledFailure) {
90
// Run compensation activity and complete
91
- System.out.println("*************** E11: " + e.getClass().getName());
92
compensationActivities.compensateDelivery(packet);
93
}
94
0 commit comments