You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2015/01/27 19:58:57 UTC

svn commit: r1655104 - /openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java

Author: solomax
Date: Tue Jan 27 18:58:57 2015
New Revision: 1655104

URL: http://svn.apache.org/r1655104
Log:
Max log size is temporary reduced

Modified:
    openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java

Modified: openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java
URL: http://svn.apache.org/viewvc/openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java?rev=1655104&r1=1655103&r2=1655104&view=diff
==============================================================================
--- openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java (original)
+++ openmeetings/branches/3.0.x/src/db/java/org/apache/openmeetings/db/entity/record/FlvRecordingLog.java Tue Jan 27 18:58:57 2015
@@ -42,7 +42,7 @@ import javax.persistence.Table;
 @Table(name = "flvrecording_log")
 public class FlvRecordingLog implements Serializable {
 	private static final long serialVersionUID = 1L;
-	public static final int MAX_LOG_SIZE = 1 * 1024 * 1024;
+	public static final int MAX_LOG_SIZE = 64 * 1024; //64K until column definition will be fixed
 	@Id
 	@GeneratedValue(strategy = GenerationType.IDENTITY)
 	@Column(name="id")