Skip to content

Commit

Permalink
fix: lfs batch请求400 #1467 (#1468)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaoxuwan authored Nov 27, 2023
1 parent c4db370 commit 7805c38
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
package com.tencent.bkrepo.lfs.pojo

import com.fasterxml.jackson.annotation.JsonProperty
import com.tencent.bkrepo.lfs.constant.BASIC_TRANSFER

data class BatchRequest(
val operation: String,
val transfers: List<String>,
val transfers: List<String> = listOf(BASIC_TRANSFER),
val ref: Map<String, String>,
val objects: List<LfsObject>,
@JsonProperty("hash_algo")
Expand Down

0 comments on commit 7805c38

Please sign in to comment.