removed transient life-cycle and restart-within-time attribute

This commit is contained in:
jboner 2009-11-11 22:48:49 +01:00
parent d8e5c1c05a
commit 015bf584a0
25 changed files with 528 additions and 310 deletions

View file

@ -19,8 +19,8 @@ public class RemotePersistentStateTest extends TestCase {
conf.configure(
new RestartStrategy(new AllForOne(), 3, 5000),
new Component[] {
new Component(PersistentStateful.class, new LifeCycle(new Permanent(), 1000), 1000000, new RemoteAddress("localhost", 9999)),
new Component(PersistentFailer.class, new LifeCycle(new Permanent(), 1000), 1000000, new RemoteAddress("localhost", 9999))
new Component(PersistentStateful.class, new LifeCycle(new Permanent()), 1000000, new RemoteAddress("localhost", 9999)),
new Component(PersistentFailer.class, new LifeCycle(new Permanent()), 1000000, new RemoteAddress("localhost", 9999))
}).supervise();
}