Skip to content

Commit

Permalink
Fix TestBackendMP... reentrancy bug fixed
Browse files Browse the repository at this point in the history
Signed-off-by: Edward McClanahan <[email protected]>
  • Loading branch information
edmc-ss committed Jan 29, 2025
1 parent 5a810b3 commit 30f84fe
Show file tree
Hide file tree
Showing 4 changed files with 281 additions and 210 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ test:short:azure:
- make test-short

test:short:oci:
<<: *test_short_def
<<: *test_short_skip_scheduled_def
variables:
BUCKET: "oc://ais-ci"
script:
Expand Down
2 changes: 1 addition & 1 deletion ais/backend/ocimpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func (mpuChild *ociMPUChildStruct) Run() {
if err == nil {
mpuChild.eTag = *resp.ETag
} else {
err = fmt.Errorf("[%d] %s", mpuChild.partNum, resp.RawResponse.Status)
err = fmt.Errorf("[%d] %s", mpuChild.partNum, err)
mpuChild.mpu.err = append(mpuChild.mpu.err, err)
mpuChild.mpu.abortInProgress = true
}
Expand Down
Loading

0 comments on commit 30f84fe

Please sign in to comment.