Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Does something in Dancer prevent using the system call?

by Riales (Hermit)
on Jun 09, 2013 at 21:47 UTC ( [id://1037958]=note: print w/replies, xml ) Need Help??


in reply to Does something in Dancer prevent using the system call?

So, I figured this one out, and it makes me feel really, really, really stupid.

The script that forks the daemon was fine. Using system from my webapp was fine. The problem lay in how I constructed the command before passing it to system:

my $cmd = '/usr/bin/perl' + . ' /home/username/workspace/Space/bin/start_client_handle +r_daemon.pl' . " $user_no" + . $ENV{IS_TEST} ? ' test' : ''

Staggeringly obvious in retrospect...no parentheses around that last line, so Perl was actually concatenating the first two strings together with $ENV{IS_TEST} and setting $cmd to ' test'.

Anyways, I forgot to check the basics and immediately assumed the problem must lay in some more complex part of the code. Lesson learned (hopefully!).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1037958]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (8)
As of 2024-04-26 08:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found