IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23860


Ignore:
Timestamp:
Apr 14, 2009, 2:32:17 PM (17 years ago)
Author:
jhoblitt
Message:

sync to changes in Nebulous::Server

Location:
branches/neb_distrib_20081210/Nebulous
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/neb_distrib_20081210/Nebulous/lib/Nebulous/Client.pm

    r23536 r23860  
    615615            return;
    616616        }
     617        if ($response->faultstring =~ /does not match any key or directory/) {
     618            $log->debug( "leaving" );
     619            return;
     620        }
    617621
    618622        $log->logdie("unhandled fault - ", $self->err);
  • branches/neb_distrib_20081210/Nebulous/t/conf/startup.pl.in

    r16281 r23860  
    1212use Test::Nebulous;
    1313
     14#$Apache::DBI::DEBUG = 1;
    1415Apache::DBI->connect_on_init( $NEB_DB, $NEB_USER, $NEB_PASS );
    15 Nebulous::Server::SOAP->new_on_init(
     16Apache::DBI->setPingTimeOut($NEB_DB, 10);
     17
     18my $config = Nebulous::Server::Config->new(
     19    trace       => 'all',
     20);
     21$config->add_db(
     22    dbindex     => 0,
    1623    dsn         => $NEB_DB,
    1724    dbuser      => $NEB_USER,
    1825    dbpasswd    => $NEB_PASS,
    19     log_level   => 'all',
    2026);
     27#$config->add_db(
     28#    dbindex     => 1,
     29#    dsn         => 'DBI:mysql:database=nebulous1:host=localhost',
     30#    dbuser      => $dbuser,
     31#    dbpasswd    => $dbpasswd,
     32#);
     33
     34Nebulous::Server::SOAP->new_on_init($config);
    2135
    22361;
Note: See TracChangeset for help on using the changeset viewer.