Skip to content

Commit 4f3cc26

Browse files
authored
Revert empty lfs ref name (#33454)
Fix #33453
1 parent 05e9063 commit 4f3cc26

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

modules/lfs/http_client.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,14 @@ func (c *HTTPClient) batch(ctx context.Context, operation string, objects []Poin
7272

7373
url := fmt.Sprintf("%s/objects/batch", c.endpoint)
7474

75+
// Original: In some lfs server implementations, they require the ref attribute. #32838
7576
// `ref` is an "optional object describing the server ref that the objects belong to"
76-
// but some (incorrect) lfs servers require it, so maybe adding an empty ref here doesn't break the correct ones.
77+
// but some (incorrect) lfs servers like aliyun require it, so maybe adding an empty ref here doesn't break the correct ones.
7778
// https://github.com/git-lfs/git-lfs/blob/a32a02b44bf8a511aa14f047627c49e1a7fd5021/docs/api/batch.md?plain=1#L37
78-
request := &BatchRequest{operation, c.transferNames(), &Reference{}, objects}
79+
//
80+
// UPDATE: it can't use "empty ref" here because it breaks others like https://github.com/go-gitea/gitea/issues/33453
81+
request := &BatchRequest{operation, c.transferNames(), nil, objects}
82+
7983
payload := new(bytes.Buffer)
8084
err := json.NewEncoder(payload).Encode(request)
8185
if err != nil {

0 commit comments

Comments
 (0)