Browse Source

add missing modify and create times

pull/664/head
Chris Lu 7 years ago
parent
commit
a6f7f9b0b8
  1. 4
      weed/server/filer_server_handlers_write_autochunk.go

4
weed/server/filer_server_handlers_write_autochunk.go

@ -158,7 +158,9 @@ func (fs *FilerServer) doAutoChunk(w http.ResponseWriter, r *http.Request, conte
entry := &filer2.Entry{
FullPath: filer2.FullPath(path),
Attr: filer2.Attr{
Mode: 0660,
Mtime: time.Now(),
Crtime: time.Now(),
Mode: 0660,
},
Chunks: fileChunks,
}

Loading…
Cancel
Save