more spectre tweaks, but no permanent solution to memory leak

This commit is contained in:
JT Smith 2006-07-04 19:02:22 +00:00
parent 1804ac8c6e
commit ea5108f952
3 changed files with 12 additions and 3 deletions

View file

@ -152,8 +152,8 @@ sub new {
object_states => [ $self => {_start=>"_start", _stop=>"_stop", "shutdown"=>"_stop", "ping"=>"ping"} ],
args=>[["shutdown","ping"]]
);
$self->{_workflow} = Spectre::Workflow->new($config, $logger, $debug);
$self->{_cron} = Spectre::Cron->new($config, $logger, $debug);
Spectre::Workflow->new($config, $logger, $debug);
Spectre::Cron->new($config, $logger, $debug);
POE::Kernel->run();
}