Skip to content

Commit 1a6229b

Browse files
committed
Fix the event listener callback delegate.
1 parent db19d0e commit 1a6229b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
147147
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
148148
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
149-
<japicmp-maven-plugin.version>0.15.3</japicmp-maven-plugin.version>
149+
<japicmp-maven-plugin.version>0.14.4</japicmp-maven-plugin.version>
150150

151151
<!-- These properties are used by Step functions for its dependencies -->
152152
<json-path.version>2.4.0</json-path.version>
@@ -519,6 +519,7 @@
519519
<onlyModified>true</onlyModified>
520520
<excludes>
521521
<exclude>*.internal.*</exclude>
522+
<exclude>software.amazon.awssdk.thirdparty.*</exclude>
522523
<exclude>software.amazon.awssdk.awscore.client.handler.AwsAsyncClientHandler</exclude>
523524
<exclude>software.amazon.awssdk.awscore.client.handler.AwsSyncClientHandler</exclude>
524525
</excludes>

utils/src/main/java/software/amazon/awssdk/utils/async/EventListeningSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ protected CancelListeningSubscriber(Subscription s) {
7575
@Override
7676
public void cancel() {
7777
super.cancel();
78-
callListener(afterCompleteListener, "Post-cancel callback failed. This exception will be dropped.");
78+
callListener(afterCancelListener, "Post-cancel callback failed. This exception will be dropped.");
7979
}
8080
}
8181

0 commit comments

Comments
 (0)