Changeset 17687 for trunk/Nebulous-Server
- Timestamp:
- May 14, 2008, 2:36:41 PM (18 years ago)
- Location:
- trunk/Nebulous-Server
- Files:
-
- 2 edited
-
Changes (modified) (1 diff)
-
lib/Nebulous/Server.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous-Server/Changes
r17680 r17687 2 2 3 3 0.10 4 - update Nebulous::Server::lock_object()/unlock_object() fault strings 4 5 - cleanup database error handling: make sure queries are ->finished before 5 6 showing an expect, remove DBI->rollback from the error paths of methods -
trunk/Nebulous-Server/lib/Nebulous/Server.pm
r17680 r17687 1 1 # Copyright (c) 2004-2008 Joshua Hoblitt 2 2 # 3 # $Id: Server.pm,v 1.6 8 2008-05-14 22:25:00jhoblitt Exp $3 # $Id: Server.pm,v 1.69 2008-05-15 00:36:41 jhoblitt Exp $ 4 4 5 5 package Nebulous::Server; … … 466 466 # can't set a write lock if there are read locks 467 467 if ($write_lock) { 468 $log->logdie("can not write lock twice ");468 $log->logdie("can not write lock twice -- retry"); 469 469 } 470 470 471 471 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"); 473 473 } 474 474 … … 486 486 # can't set a read lock if there's a write lock 487 487 if ($write_lock) { 488 $log->logdie("can not read lock after write lock ");488 $log->logdie("can not read lock after write lock -- retry"); 489 489 } 490 490
Note:
See TracChangeset
for help on using the changeset viewer.
