IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 14, 2008, 2:36:41 PM (18 years ago)
Author:
jhoblitt
Message:

update Nebulous::Server::lock_object()/unlock_object() fault strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server.pm

    r17680 r17687  
    11# Copyright (c) 2004-2008  Joshua Hoblitt
    22#
    3 # $Id: Server.pm,v 1.68 2008-05-14 22:25:00 jhoblitt Exp $
     3# $Id: Server.pm,v 1.69 2008-05-15 00:36:41 jhoblitt Exp $
    44
    55package Nebulous::Server;
     
    466466            # can't set a write lock if there are read locks
    467467            if ($write_lock) {
    468                 $log->logdie("can not write lock twice");
     468                $log->logdie("can not write lock twice -- retry");
    469469            }
    470470           
    471471            if ($read_lock > 0) {
    472                 $log->logdie("can not write lock after read lock");
     472                $log->logdie("can not write lock after read lock -- retry");
    473473            }
    474474
     
    486486            # can't set a read lock if there's a write lock
    487487            if ($write_lock) {
    488                 $log->logdie("can not read lock after write lock");
     488                $log->logdie("can not read lock after write lock -- retry");
    489489            }
    490490
Note: See TracChangeset for help on using the changeset viewer.