get_md5 should return @server_md5 when putting file in safe mode.

This commit is contained in:
Steve Randy Tantra 2011-05-02 01:55:54 +08:00
parent eef9abfbdf
commit 3a3a31a3dc
1 changed files with 3 additions and 1 deletions

View File

@ -454,7 +454,9 @@ module Mongo
@server_md5 = @files.db.command(md5_command)['md5']
if @safe
@client_md5 = @local_md5.hexdigest
if @local_md5 != @server_md5
if @local_md5 == @server_md5
@server_md5
else
raise GridMD5Failure, "File on server failed MD5 check"
end
else