fix: handle nil CopyByChunk in replication policy view#596
Merged
Conversation
ae52da7 to
b6f6fa4
Compare
Contributor
Author
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #596 +/- ##
=========================================
- Coverage 10.99% 7.47% -3.53%
=========================================
Files 173 261 +88
Lines 8671 13012 +4341
=========================================
+ Hits 953 972 +19
- Misses 7612 11931 +4319
- Partials 106 109 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
Author
|
@bupd Hi I’ve added unit tests covering both nil and non-nil CopyByChunk cases in this PR. |
bupd
requested changes
Feb 3, 2026
bupd
left a comment
Member
There was a problem hiding this comment.
please fix lint - add license header to the new view_test.go file
693b139 to
b7c3a6e
Compare
Signed-off-by: yimtun <yim.tune@gmail.com>
b7c3a6e to
8617a1f
Compare
Signed-off-by: bupd <bupdprasanth@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this PR does
CopyByChunkCopyByChunkis not setWhy
ReplicationPolicy.CopyByChunkis optional and may be nil for some replication policies.Calling
strconv.FormatBool(*CopyByChunk)in such cases causes a panic.This issue was observed when using Harbor server version 2.5.5.
This issue can be reproduced by running:
Which results in:
How
formatCopyByChunk"N/A"when the value is nilNotes