IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13256


Ignore:
Timestamp:
May 4, 2007, 2:14:17 PM (19 years ago)
Author:
jhoblitt
Message:

change all Nebulous::Client public methods to behave in list context

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/Changes

    r13251 r13256  
    22
    330.05
     4    - change all Nebulous::Client public methods to behave in list context
    45    - rework the getmountedvol() stored procedure to attempt to work around
    56      what appears to be some nasty transacational isolation leak throught that
  • trunk/Nebulous/Changes

    r13251 r13256  
    22
    330.05
     4    - change all Nebulous::Client public methods to behave in list context
    45    - rework the getmountedvol() stored procedure to attempt to work around
    56      what appears to be some nasty transacational isolation leak throught that
  • trunk/Nebulous/lib/Nebulous/Client.pm

    r13255 r13256  
    11# Copyright (c) 2004  Joshua Hoblitt
    22#
    3 # $Id: Client.pm,v 1.33 2007-05-05 00:02:53 jhoblitt Exp $
     3# $Id: Client.pm,v 1.34 2007-05-05 00:14:17 jhoblitt Exp $
    44
    55package Nebulous::Client;
     
    109109        $log->debug( "leaving" );
    110110
    111         return undef;
     111        return;
    112112    }
    113113
     
    145145        $log->debug( "leaving" );
    146146
    147         return undef;
     147        return;
    148148    }
    149149
     
    189189        $log->debug( "leaving" );
    190190
    191         return undef;
     191        return;
    192192    }
    193193
     
    198198        $log->debug( "leaving" );
    199199
    200         return undef;
     200        return;
    201201    }
    202202
     
    326326            # don't bother to spin lock if the object doesn't exist
    327327            if ( $response->faultstring =~ /storage object does not exist/ ) {
    328                 return undef;
     328                return;
    329329            }
    330330
     
    346346    $log->debug( "leaving" );
    347347   
    348     return $locked ? 1 : undef;
     348    $locked ? return 1 : return;
    349349}
    350350
     
    375375        $log->debug( "leaving" );
    376376
    377         return undef;
     377        return;
    378378    }
    379379
     
    387387    $log->debug( "leaving" );
    388388   
    389     return $unlocked ? 1 : undef;
     389    $unlocked ? return 1 : return;
    390390}
    391391
     
    407407        $log->debug( "leaving" );
    408408
    409         return undef;
     409        return;
    410410    }
    411411
     
    447447        $log->debug( "leaving" );
    448448
    449         return undef;
     449        return;
    450450    }
    451451
     
    528528        } else {
    529529            $log->debug( "leaving" );
    530             return undef;
     530            return;
    531531        }
    532532    }
     
    538538            $log->warn( "write not allowed with multiple instances" );
    539539            $log->debug( "leaving" );
    540             return undef;
     540            return;
    541541        }
    542542
     
    606606        $log->debug( "leaving" );
    607607
    608         return undef;
     608        return;
    609609    }
    610610
     
    619619        $log->debug( "leaving" );
    620620
    621         return undef;
     621        return;
    622622    }
    623623
     
    651651        $log->debug( "leaving" );
    652652
    653         return undef;
     653        return;
    654654    }
    655655
     
    684684        $log->debug( "leaving" );
    685685
    686         return undef;
     686        return;
    687687    }
    688688
     
    716716        $log->debug( "leaving" );
    717717
    718         return undef;
     718        return;
    719719    }
    720720
Note: See TracChangeset for help on using the changeset viewer.