Changeset 1302

Show
Ignore:
Timestamp:
08/24/09 07:51:04 (3 months ago)
Author:
ask
Message:

Accept 405 responses to MKCOL from the WebDAV server since it often
just means that the directory already exists.

Location:
trunk/server
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/server/CHANGES

    r1298 r1302  
     1        * Accept 405 responses to MKCOL from the WebDAV server since it often 
     2          just means that the directory already exists. (Ask BjÞrn Hansen) 
     3 
    14        * Fix showing domain and class in mogadm output when there's only the 
    25          default class in the domain (Mark Imbriaco) 
  • trunk/server/lib/MogileFS/Device.pm

    r1198 r1302  
    372372 
    373373    # if they don't support this method, remember that 
    374     if ($ans && $ans =~ m!HTTP/1\.[01] (400|405|501)!) { 
     374    if ($ans && $ans =~ m!HTTP/1\.[01] (400|501)!) { 
    375375        $self->{no_mkcol} = 1; 
    376376        # TODO: move this into method on device, which propagates to parent