Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/blob/controllerserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@
}
timeoutFunc := func() error {
_, percent, _ := d.azcopy.GetAzcopyJob(dstContainerName, authAzcopyEnv)
return fmt.Errorf("timeout waiting for copy blob container %s to %s complete, current copy percent: %s%%", srcPath, dstContainerName, percent)
return fmt.Errorf("timeout waiting for copy blob container %s to %s complete, current copy percent: %s%%", srcContainerName, dstContainerName, percent)

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Build

undefined: srcContainerName

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Build

undefined: srcContainerName

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / build (1.16.x, windows-latest)

undefined: srcContainerName

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Go Lint

undefined: srcContainerName) (typecheck)

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Go Lint

undefined: srcContainerName) (typecheck)

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Go Lint

undefined: srcContainerName) (typecheck)

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Go Lint

undefined: srcContainerName (typecheck)

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

undefined: srcContainerName

Check failure on line 792 in pkg/blob/controllerserver.go

View workflow job for this annotation

GitHub Actions / Build

undefined: srcContainerName
}
copyErr := util.WaitUntilTimeout(time.Duration(d.waitForAzCopyTimeoutMinutes)*time.Minute, execFunc, timeoutFunc)
if copyErr != nil {
Expand Down
Loading