Chris Lu
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
weed/server/filer_server_handlers_write_autochunk.go
|
@ -131,7 +131,7 @@ func isAppend(r *http.Request) bool { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func skipCheckParentDirEntry(r *http.Request) bool { |
|
|
func skipCheckParentDirEntry(r *http.Request) bool { |
|
|
return r.URL.Query().Get("skipCheckParentDir") != "true" |
|
|
|
|
|
|
|
|
return r.URL.Query().Get("skipCheckParentDir") == "true" |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func (fs *FilerServer) saveMetaData(ctx context.Context, r *http.Request, fileName string, contentType string, so *operation.StorageOption, md5bytes []byte, fileChunks []*filer_pb.FileChunk, chunkOffset int64, content []byte) (filerResult *FilerPostResult, replyerr error) { |
|
|
func (fs *FilerServer) saveMetaData(ctx context.Context, r *http.Request, fileName string, contentType string, so *operation.StorageOption, md5bytes []byte, fileChunks []*filer_pb.FileChunk, chunkOffset int64, content []byte) (filerResult *FilerPostResult, replyerr error) { |
|
|