We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88499a4 commit 4d29987Copy full SHA for 4d29987
sdk-workflows/src/main/java/io/dapr/workflows/saga/Saga.java
@@ -104,7 +104,7 @@ private void compensateSequentially(WorkflowContext ctx) {
104
} catch (Exception e) {
105
if (sagaException == null) {
106
sagaException = new SagaCompensationException(
107
- "Exception in saga compensatation: activity=" + activityClassName, e);
+ "Exception in saga compensation: activity=" + activityClassName, e);
108
} else {
109
sagaException.addSuppressed(e);
110
}
0 commit comments