use of org.apache.ignite.igfs.IgfsIpcEndpointConfiguration in project ignite by apache.
the class IgfsProcessorValidationSelfTest method testInvalidEndpointThreadCount.
/**
* @throws Exception If failed.
*/
public void testInvalidEndpointThreadCount() throws Exception {
final String failMsg = "IGFS endpoint thread count must be positive";
final String igfsCfgName = "igfs-cfg";
final IgfsIpcEndpointConfiguration igfsEndpointCfg = new IgfsIpcEndpointConfiguration();
igfsEndpointCfg.setThreadCount(0);
g1IgfsCfg1.setName(igfsCfgName);
g1IgfsCfg1.setIpcEndpointConfiguration(igfsEndpointCfg);
checkGridStartFails(g1Cfg, failMsg, true);
}
Aggregations