-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete() funcs should return nil if not exists #379
Open
sebrandon1
wants to merge
2
commits into
openshift-kni:main
Choose a base branch
from
sebrandon1:delete_returns
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
sebrandon1
requested review from
trewest,
achuzhoy,
kononovn,
wabouhamad and
cdvultur
as code owners
April 30, 2024 14:29
sebrandon1
force-pushed
the
delete_returns
branch
6 times, most recently
from
May 6, 2024 15:44
1cdf551
to
7d29ff5
Compare
sebrandon1
force-pushed
the
delete_returns
branch
5 times, most recently
from
May 9, 2024 20:08
bc21dae
to
60b0b6f
Compare
sebrandon1
force-pushed
the
delete_returns
branch
4 times, most recently
from
May 22, 2024 16:49
c4915c4
to
cc36496
Compare
sebrandon1
force-pushed
the
delete_returns
branch
3 times, most recently
from
June 3, 2024 21:38
70a3569
to
d303184
Compare
sebrandon1
force-pushed
the
delete_returns
branch
4 times, most recently
from
June 14, 2024 11:15
f505182
to
00a350e
Compare
sebrandon1
force-pushed
the
delete_returns
branch
from
June 21, 2024 19:04
00a350e
to
c37e5bf
Compare
This was referenced Oct 16, 2024
sebrandon1
force-pushed
the
delete_returns
branch
from
October 21, 2024 15:31
7451b2b
to
ae53b9f
Compare
This was referenced Oct 21, 2024
sebrandon1
force-pushed
the
delete_returns
branch
from
October 21, 2024 16:54
ae53b9f
to
bc00764
Compare
This was referenced Oct 21, 2024
sebrandon1
force-pushed
the
delete_returns
branch
from
October 22, 2024 18:14
bc00764
to
e2f0eef
Compare
sebrandon1
force-pushed
the
delete_returns
branch
2 times, most recently
from
November 1, 2024 15:42
d125130
to
7c79708
Compare
sebrandon1
force-pushed
the
delete_returns
branch
from
November 7, 2024 23:34
7c79708
to
3498b15
Compare
sebrandon1
force-pushed
the
delete_returns
branch
from
November 11, 2024 14:55
3498b15
to
65ca88b
Compare
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.
There seems to be a mismatch of how we expect
Delete()
funcs throughout the repo.The general consensus from most of the
Delete()
functions is that we should return nil because the object doesn't exist. There are a few outliers that I changed in this PR that were returning an error because an item didn't exist.I have adjusted all of the Delete() funcs to set the
builder.Object
to nil and then returnnil