switch IDP scripts to use better port 4730
Tara L Andrews [Wed, 26 Sep 2012 03:54:19 +0000 (05:54 +0200)]
analysis/idp_server/graphcalc.cgi
analysis/idp_server/graphcalc_worker.pl

index 7edf758..d0cd1f4 100755 (executable)
@@ -29,7 +29,7 @@ error( 400, 'Content type must be application/json' )
 # Get the post data, and decode it according to the given character set 
 my $jsonstr = decode( $encoding, $q->param('POSTDATA') );
 $jsonstr =~ s/\&/\n/g;
-# TODO eval this; if it breaks return an error.
+# Validate the JSON
 my $request;
 try {
     $request = from_json( $jsonstr );
@@ -84,7 +84,7 @@ foreach my $p ( @problems ) {
 if( @needcalc ) {
        my $arg = join( ',', map { $_->object_key } @needcalc );
        my $client = Gearman::Client->new;
-       $client->job_servers( '127.0.0.1' );
+       $client->job_servers( '127.0.0.1:4730' );
        my $task = $client->dispatch_background( run_idp => $arg );
        # See if it finishes quickly
        my $wait = 3;
index 320c5cd..1cf2549 100755 (executable)
@@ -23,7 +23,7 @@ my @idp_programs = qw/ findGroupings findClasses /;
 my $witness_map = {};
 
 my $worker = Gearman::Worker->new();
-$worker->job_servers('127.0.0.1');
+$worker->job_servers('127.0.0.1:4730');
 $worker->register_function( run_idp => \&run_idp );
 $worker->work while 1;