Skip to content

Commit

Permalink
Updated internal version fields and changed logging in StreamService
Browse files Browse the repository at this point in the history
  • Loading branch information
mondain committed May 4, 2022
1 parent 1a0d442 commit a4a733a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/main/java/org/red5/client/Red5Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public final class Red5Client {
/**
* Current server version with revision
*/
public static final String VERSION = "Red5 Client 1.2.21";
public static final String VERSION = "Red5 Client 1.2.22";

/**
* Create a new Red5Client object using the connection local to the current thread A bit of magic that lets you access the red5 scope
Expand Down
4 changes: 2 additions & 2 deletions common/src/main/java/org/red5/server/api/Red5.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ public final class Red5 {
/**
* Server version with revision
*/
public static final String VERSION = "Red5 Server 1.2.21";
public static final String VERSION = "Red5 Server 1.2.22";

/**
* Server version for fmsVer requests
*/
public static final String FMS_VERSION = "RED5/1,2,21,0";
public static final String FMS_VERSION = "RED5/1,2,22,0";

/**
* Server capabilities
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,10 @@ public void publish(String name, String mode) {
}
// grab the streams name
name = name.substring(0, name.indexOf("?"));
log.debug("publish called with name: {} and mode: {}; query string: {}", name, mode, queryString);
} else {
log.debug("publish called with name: {} and mode: {}", name, mode);
}
log.debug("publish called with name: {} and mode: {}", name, mode);
// if stripping prefixes, do so here
if (stripTypePrefix) {
name = name.replaceAll("(mp4\\:|f4v\\:)", "");
Expand Down

0 comments on commit a4a733a

Please sign in to comment.