App-VW
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
close(PID);
return [$pid_file, $pid];
}
# a continuity-based http server
sub continuity_server {
my ($app) = @_;
chdir($app->{dir});
my $harness = "$app->{dir}/vw_harness.pl";
if (-e $harness) {
local @ARGV = %$app;
eval { do $harness; };
# ...and never return.
# But if it fails for some reason...
my $error = $@ || "$harness could not be started.";
syslog(LOG_ERR, "$app->{app}: $error");
} else {
syslog(LOG_ERR, "$app->{app}: $harness was not found.");
}
exit 1;
}
view all matches for this distributionview release on metacpan - search on metacpan
( run in 1.317 second using v1.00-cache-2.02-grep-82fe00e-cpan-da92000dfeb )