Skip to content

Commit

Permalink
Versioned to 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mondain committed Apr 21, 2021
1 parent 5639610 commit 97323cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 32 deletions.
30 changes: 1 addition & 29 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.red5</groupId>
<artifactId>red5-parent</artifactId>
<version>1.2.6</version>
<version>1.2.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>red5-server-common</artifactId>
Expand Down Expand Up @@ -82,37 +82,9 @@
<!-- compiler plugin node for JDK 8 only -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version><!--$NO-MVN-MAN-VER$-->
<configuration>
<!--
<source>1.8</source>
<target>1.8</target>
-->
<verbose>true</verbose>
<fork>true</fork>
<executable>/usr/lib/jvm/java-11-amazon-corretto/bin/javac</executable>
<!--
<compilerVersion>1.8</compilerVersion>
-->
</configuration>
</plugin>
<plugin>
<artifactId>maven-toolchains-plugin</artifactId>
<!-- executions/configuration node entries for JDK 8 only; remove for JDK 11 -->
<executions>
<execution>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>[1.11,)</version>
</jdk>
</toolchains>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/red5/server/api/Red5.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public final class Red5 {
* Server capabilities
*/
public static final Integer CAPABILITIES = Integer.valueOf(33);

/**
* Since 128 is way too small, we'll use 1024 by default when publish or play are called.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/red5/server/net/rtmp/RTMPConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
public abstract class RTMPConnection extends BaseConnection implements IStreamCapableConnection, IServiceCapableConnection, IReceivedMessageTaskQueueListener {

private static Logger log = LoggerFactory.getLogger(RTMPConnection.class);

protected static boolean isTrace = log.isTraceEnabled();

protected static boolean isDebug = log.isDebugEnabled();

public static final String RTMP_SESSION_ID = "rtmp.sessionid";
Expand Down

0 comments on commit 97323cc

Please sign in to comment.