Fixed some bug regarding datadir

This commit is contained in:
2013-04-16 11:50:38 +02:00
parent 56ed2fe9ad
commit 04e58cfa49
@@ -73,8 +73,8 @@ public class FdaqConfiguration {
hostname = properties.getProperty(FdaqConfiguration.class.getPackage().getName()+".hostname", "mchip015.psi.ch");
port = Integer.parseInt(properties.getProperty(FdaqConfiguration.class.getPackage().getName()+".port", "2233"));
killPort = Integer.parseInt(properties.getProperty(FdaqConfiguration.class.getPackage().getName()+".killPort", "2234"));
dataDirectory = config+"/data";
}
dataDirectory = config+"/data";
}
public String getHostname() {