summaryrefslogtreecommitdiff
path: root/FS/bin
diff options
context:
space:
mode:
authorivan <ivan>2010-06-17 17:19:47 +0000
committerivan <ivan>2010-06-17 17:19:47 +0000
commitfe104b1e0f896ed93d0cab8c9c1b514f3090899e (patch)
treef26897df484cf61a31576de40b07b8a9f25038ed /FS/bin
parent224cc384b2467b8d33553f24371e79712cb07c88 (diff)
just go ahead and depend on POE 1.2 seems the path of least resistance, RT#7780
Diffstat (limited to 'FS/bin')
-rwxr-xr-xFS/bin/freeside-selfservice-xmlrpcd4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/bin/freeside-selfservice-xmlrpcd b/FS/bin/freeside-selfservice-xmlrpcd
index b15ad257e..d7b30b0aa 100755
--- a/FS/bin/freeside-selfservice-xmlrpcd
+++ b/FS/bin/freeside-selfservice-xmlrpcd
@@ -15,7 +15,7 @@ use constant MAX_PROCESSES => 10; # Total server process count.
use constant SERVER_PORT => 8080; # Server port.
use constant TESTING_CHURN => 0; # Randomly test process respawning.
-use POE; # Base features.
+use POE 1.2; # Base features.
use POE::Filter::HTTPD; # For serving HTTP content.
use POE::Wheel::ReadWrite; # For socket I/O.
use POE::Wheel::SocketFactory; # For serving socket connections.
@@ -51,7 +51,7 @@ $FS::Daemon::NOSIG = 1;
$FS::Daemon::PID_NEWSTYLE = 1;
daemonize1('selfservice-xmlrpcd');
-POE::Kernel->has_forked() if POE::Kernel->can('has_forked'); #daemonize forks...
+POE::Kernel->has_forked(); #daemonize forks...
drop_root();