Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update Atmosphere (#12293) (#12308)
* Update Atmosphere (#12293)

Fixes concurrency issue with UUIDBroadcasterCache that may lead to loss of packets and thus repeated resynchronizations when using Push.
  • Loading branch information
Ansku committed May 17, 2021
1 parent b6cd9f3 commit 1e029aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -35,7 +35,7 @@
<javax.portlet.version>2.0</javax.portlet.version>
<vaadin.sass.version>0.9.13</vaadin.sass.version>
<!-- Note that this should be kept in sync with the class Constants -->
<atmosphere.runtime.version>2.4.30.vaadin3</atmosphere.runtime.version>
<atmosphere.runtime.version>2.4.30.vaadin4</atmosphere.runtime.version>

<!-- OSGi -->
<osgi.execution.environment>JavaSE-1.8</osgi.execution.environment>
Expand Down Expand Up @@ -188,7 +188,7 @@
<groupId>com.vaadin.external.atmosphere.client</groupId>
<artifactId>javascript</artifactId>
<type>war</type>
<version>2.3.2.vaadin1</version>
<version>2.3.2.vaadin2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/com/vaadin/server/Constants.java
Expand Up @@ -66,7 +66,7 @@ public interface Constants {
+ "=================================================================";

// Keep the version number in sync with pom.xml
static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.4.30.vaadin3";
static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.4.30.vaadin4";

static final String INVALID_ATMOSPHERE_VERSION_WARNING = "\n"
+ "=================================================================\n"
Expand Down

0 comments on commit 1e029aa

Please sign in to comment.