Skip to content

Commit

Permalink
Work around TF core dump with open jdk
Browse files Browse the repository at this point in the history
  • Loading branch information
colinduplantis committed Dec 1, 2020
1 parent fbecac6 commit e314c72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void writeGraph(Graph inGraph)
/**
* persistence graph data value
*/
@Column(name="graph_data",length=1024)
@Column(name="graph_data",length=Integer.MAX_VALUE)
private byte[] graphData;
private static final long serialVersionUID = 5408021483861544411L;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import java.math.BigDecimal;

import org.junit.Ignore;
import org.junit.Test;
import org.marketcetera.module.DataFlowID;
import org.marketcetera.modules.headwater.HeadwaterModule;
Expand All @@ -26,6 +27,7 @@
* @version $Id$
* @since $Release$
*/
@Ignore("Tensor flow causes core-dump with Open JDK 1.8.0")
public class TensorFlowConverterTest
extends TensorFlowTestBase
{
Expand Down

0 comments on commit e314c72

Please sign in to comment.