Handle rare case when ceph doesn't return Last-Modified for HEAD requests in case DLO manifest doesn't have any segments
Signed-off-by: Gleb Schukin <gs1983@gmail.com>
This commit is contained in:
parent
e69f108924
commit
52eecb556c
1 changed files with 5 additions and 3 deletions
2
vendor/github.com/ncw/swift/swift.go
generated
vendored
2
vendor/github.com/ncw/swift/swift.go
generated
vendored
|
@ -1737,10 +1737,12 @@ func (c *Connection) Object(container string, objectName string) (info Object, h
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if resp.Header.Get("Last-Modified") != "" {
|
||||||
info.ServerLastModified = resp.Header.Get("Last-Modified")
|
info.ServerLastModified = resp.Header.Get("Last-Modified")
|
||||||
if info.LastModified, err = time.Parse(http.TimeFormat, info.ServerLastModified); err != nil {
|
if info.LastModified, err = time.Parse(http.TimeFormat, info.ServerLastModified); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
}
|
||||||
info.Hash = resp.Header.Get("Etag")
|
info.Hash = resp.Header.Get("Etag")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue