We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The code here can be optimized
if !found { return false } if jobInfo.Job == nil { return false }
i think is
if !found || jobInfo.Job == nil { return false }
No response
The text was updated successfully, but these errors were encountered:
/assign
Sorry, something went wrong.
refactor: Optimized code
a2eaf58
The two judgments can be merged Fixes volcano-sh#4065
1424ff8
e2ed80f
The two judgments can be merged Fixes volcano-sh#4065 Signed-off-by: feyounger <[email protected]>
f00c044
feyounger
Successfully merging a pull request may close this issue.
What is the problem you're trying to solve
The code here can be optimized
Describe the solution you'd like
i think is
Additional context
No response
The text was updated successfully, but these errors were encountered: