IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 19, 2009, 3:36:06 PM (17 years ago)
Author:
jhoblitt
Message:

silence directory permission warning

File:
1 edited

Legend:

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

    r24500 r24521  
    439439                    unless $parent_id;
    440440
    441                 $db->commit;
     441#                $db->commit;
    442442            }
    443443        };
     
    20762076        my $mode = [$self->_retry(sub { stat($storage_path) } )]->[2] & 07777;
    20772077        unless ($mode == 0775) {
    2078             $log->error("$storage_path has the wrong permissions of: 0", sprintf("%o", $mode));
     2078            # XXX: this problem is so common that it's flooding the logs
     2079            $log->debug("$storage_path has the wrong permissions of: 0", sprintf("%o", $mode));
    20792080            $self->_retry(sub { chmod(0775, $storage_path) })
    20802081                or die("can not chmod() $storage_path: $!");
Note: See TracChangeset for help on using the changeset viewer.