diff --git a/client/pom.xml b/client/pom.xml
index e5f6d7547..32088b07e 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-client
diff --git a/client/src/main/java/org/red5/client/Red5Client.java b/client/src/main/java/org/red5/client/Red5Client.java
index 94dcf85c6..a357a5d4a 100644
--- a/client/src/main/java/org/red5/client/Red5Client.java
+++ b/client/src/main/java/org/red5/client/Red5Client.java
@@ -18,7 +18,7 @@ public final class Red5Client {
/**
* Current server version with revision
*/
- public static final String VERSION = "Red5 Client 1.3.34";
+ public static final String VERSION = "Red5 Client 1.3.35";
/**
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope
diff --git a/common/pom.xml b/common/pom.xml
index b9eaef2ca..6cb9c6897 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-server-common
@@ -105,7 +105,7 @@
net.engio
mbassador
- 1.3.34
+ 1.3.35
-->
junit
diff --git a/common/src/main/java/org/red5/server/AttributeStore.java b/common/src/main/java/org/red5/server/AttributeStore.java
index e7116a941..910fdeb2a 100644
--- a/common/src/main/java/org/red5/server/AttributeStore.java
+++ b/common/src/main/java/org/red5/server/AttributeStore.java
@@ -153,7 +153,7 @@ public boolean setAttribute(final String name, final Object value) {
boolean result = false;
if (name != null && value != null) {
// get previous value
- final Object previous = attributes.putIfAbsent(name, value);
+ final Object previous = attributes.put(name, value);
// previous will be null if the attribute didn't exist and if it does it will equal the previous value
if (previous != null) {
// if the value is a collection, check the elements for modification
diff --git a/common/src/main/java/org/red5/server/api/Red5.java b/common/src/main/java/org/red5/server/api/Red5.java
index 55c3a9202..53da15568 100644
--- a/common/src/main/java/org/red5/server/api/Red5.java
+++ b/common/src/main/java/org/red5/server/api/Red5.java
@@ -57,12 +57,12 @@ public final class Red5 {
/**
* Server version with revision
*/
- public static final String VERSION = "Red5 Server 1.3.34";
+ public static final String VERSION = "Red5 Server 1.3.35";
/**
* Server version for fmsVer requests
*/
- public static final String FMS_VERSION = "RED5/1,3,34,0";
+ public static final String FMS_VERSION = "RED5/1,3,35,0";
/**
* Server capabilities
diff --git a/io/pom.xml b/io/pom.xml
index b4624b7df..ac051e592 100644
--- a/io/pom.xml
+++ b/io/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-io
diff --git a/pom.xml b/pom.xml
index 5666832e7..776cc7497 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
Red5
The Red5 server
org.red5
- 1.3.34
+ 1.3.35
https://github.com/Red5/red5-server
2005
diff --git a/server/pom.xml b/server/pom.xml
index c1515a33a..37acbd154 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-server
diff --git a/service/pom.xml b/service/pom.xml
index b778cfb48..44f5c3c0b 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-service
diff --git a/servlet/pom.xml b/servlet/pom.xml
index 52c83f44f..1da534901 100644
--- a/servlet/pom.xml
+++ b/servlet/pom.xml
@@ -3,7 +3,7 @@
org.red5
red5-parent
- 1.3.34
+ 1.3.35
4.0.0
red5-servlet