diff --git a/pom.xml b/pom.xml
index b4def47c..f9f64bad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.uid2
uid2-shared
- 7.4.7-1876cb3a4a
+ 7.4.14-SNAPSHOT
${project.groupId}:${project.artifactId}
Library for all the shared uid2 operations
https://github.com/IABTechLab/uid2docs
diff --git a/src/main/java/com/uid2/shared/vertx/CloudSyncVerticle.java b/src/main/java/com/uid2/shared/vertx/CloudSyncVerticle.java
index 67c1c13d..4f406ec9 100644
--- a/src/main/java/com/uid2/shared/vertx/CloudSyncVerticle.java
+++ b/src/main/java/com/uid2/shared/vertx/CloudSyncVerticle.java
@@ -358,7 +358,7 @@ private Future cloudDownloadFile(String s3Path) {
// increase counter, send event
if (ar.succeeded()) {
- vertx.eventBus().send(this.eventDownloaded, this.cloudSync.toLocalPath(s3Path));
+ vertx.eventBus().publish(this.eventDownloaded, this.cloudSync.toLocalPath(s3Path));
this.counterDownloaded.increment();
} else {
this.counterDownloadFailures.increment();