Skip to content
Merged
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
4 changes: 2 additions & 2 deletions pkg/service/storage/handlers/replica/transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ func sinkLabel(sink *url.URL) string {
if sink == nil {
return "none"
}
return sink.String()
return sink.Host
}

func sourceLabel(source *url.URL) string {
if source == nil {
return "none"
}
return source.String()
return source.Host
}

// checkBlobExists checks if the blob already exists in either PDP or Blobs store
Expand Down
Loading