Skip to content

Commit a4a733a

Browse files
committed
Updated internal version fields and changed logging in StreamService
1 parent 1a0d442 commit a4a733a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

client/src/main/java/org/red5/client/Red5Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public final class Red5Client {
1818
/**
1919
* Current server version with revision
2020
*/
21-
public static final String VERSION = "Red5 Client 1.2.21";
21+
public static final String VERSION = "Red5 Client 1.2.22";
2222

2323
/**
2424
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope

common/src/main/java/org/red5/server/api/Red5.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ public final class Red5 {
5555
/**
5656
* Server version with revision
5757
*/
58-
public static final String VERSION = "Red5 Server 1.2.21";
58+
public static final String VERSION = "Red5 Server 1.2.22";
5959

6060
/**
6161
* Server version for fmsVer requests
6262
*/
63-
public static final String FMS_VERSION = "RED5/1,2,21,0";
63+
public static final String FMS_VERSION = "RED5/1,2,22,0";
6464

6565
/**
6666
* Server capabilities

common/src/main/java/org/red5/server/stream/StreamService.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,8 +677,10 @@ public void publish(String name, String mode) {
677677
}
678678
// grab the streams name
679679
name = name.substring(0, name.indexOf("?"));
680+
log.debug("publish called with name: {} and mode: {}; query string: {}", name, mode, queryString);
681+
} else {
682+
log.debug("publish called with name: {} and mode: {}", name, mode);
680683
}
681-
log.debug("publish called with name: {} and mode: {}", name, mode);
682684
// if stripping prefixes, do so here
683685
if (stripTypePrefix) {
684686
name = name.replaceAll("(mp4\\:|f4v\\:)", "");

0 commit comments

Comments
 (0)