IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 32652 for trunk/PS-IPP-Config


Ignore:
Timestamp:
Nov 10, 2011, 2:13:12 PM (14 years ago)
Author:
bills
Message:

Get NEB_SERVER from environment not site.config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PS-IPP-Config/lib/PS/IPP/Config.pm

    r32506 r32652  
    398398    return $self->{nebulous} if defined $self->{nebulous}; # Already started
    399399
    400     my $server = metadataLookupStr( $self->{_siteConfig}, 'NEB_SERVER' ); # Nebulous server
     400    # For consistency with the rest of the IPP, don't use site.config
     401    # to set NEB_SERVER use environment variable.
     402    # my $server = metadataLookupStr( $self->{_siteConfig}, 'NEB_SERVER' ); # Nebulous server
     403    my $server = $ENV{NEB_SERVER};
    401404    unless (defined $server) {
    402405        carp "Unable to find NEB_SERVER in camera configuration file.";
Note: See TracChangeset for help on using the changeset viewer.