Issue #1597 Provide valid default settings. Deploy gfe.xml config file.

Change-Id: Ic34e231a8f10ba55051b89f6081f081b402a01c8

Former-commit-id: 53a924067c39e7f92b2f3280acf2cb6d15e2af03
This commit is contained in:
Ron Anderson 2013-03-04 09:28:25 -06:00
parent 783e9c1a25
commit e8f1b460ce
2 changed files with 5 additions and 4 deletions

View file

@ -10,6 +10,7 @@ bin.includes = META-INF/,\
localization/,\
images/,\
help/,\
OSGI-INF/component.xml
OSGI-INF/component.xml,\
res/
source.. = src/,\
tests/

View file

@ -29,7 +29,7 @@ package com.raytheon.viz.gfe.core;
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Jan 28, 2013 randerso Initial creation
* Jan 28, 2013 #1597 randerso Initial creation
*
* </pre>
*
@ -39,9 +39,9 @@ package com.raytheon.viz.gfe.core;
public class GfeClientConfig {
private int maxSaveThreads;
private int maxSaveThreads = 3;
private long gridSaveThreshold;
private long gridSaveThreshold = 32 * 1024 * 1024; // 32 MB
private static final GfeClientConfig instance = new GfeClientConfig();