Commit 1b1069f8 authored by Marin Jankovski's avatar Marin Jankovski

No need to check for zero size, this will be handled while storing the object.

parent 0d0bd209
...@@ -33,11 +33,6 @@ func lfsAuthorizeHandler(handleFunc serviceHandleFunc) serviceHandleFunc { ...@@ -33,11 +33,6 @@ func lfsAuthorizeHandler(handleFunc serviceHandleFunc) serviceHandleFunc {
return return
} }
if r.LfsSize == 0 {
fail500(w, "lfsAuthorizeHandler", errors.New("Lfs object size not specified."))
return
}
if err := os.MkdirAll(r.StoreLFSPath, 0700); err != nil { if err := os.MkdirAll(r.StoreLFSPath, 0700); err != nil {
fail500(w, "Couldn't create directory for storing LFS tmp objects.", err) fail500(w, "Couldn't create directory for storing LFS tmp objects.", err)
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment