mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
8480008a9a
removing mono and multi part upload analyzer, which were used just to determine the file name
14 lines
308 B
Go
14 lines
308 B
Go
package weed_server
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
func (fs *FilerServer) multipartUploadAnalyzer(w http.ResponseWriter, r *http.Request, replication, collection string, dataCenter string) (path string, err error) {
|
|
//Default handle way for http multipart
|
|
if r.Method == "PUT" {
|
|
path = r.URL.Path
|
|
}
|
|
return
|
|
}
|