actions artifacts: warn instead of error on invalid request

This commit is contained in:
oliverpool 2024-03-19 16:00:48 +01:00
parent a0d1cfdf7d
commit e7abda6a0d
3 changed files with 3 additions and 3 deletions

View file

@ -359,7 +359,7 @@ func (r *artifactV4Routes) finalizeArtifact(ctx *ArtifactContext) {
checksum = req.Hash.Value
}
if err := mergeChunksForArtifact(ctx, chunks, r.fs, artifact, checksum); err != nil {
log.Error("Error merge chunks: %v", err)
log.Warn("Error merge chunks: %v", err)
ctx.Error(http.StatusInternalServerError, "Error merge chunks")
return
}