-
Notifications
You must be signed in to change notification settings - Fork 132
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
fix: JUnit processing for large files #5879
Conversation
…g-large-junit-files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like there are some debugging logs for removal, unnecessary memory storage for (big) files check
// Apply path prefix correctly | ||
if p.pathPrefix != "" { | ||
path = filepath.Join(p.pathPrefix, path) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not needed because in the above Add
we already to the same:
uploadPath := path
if p.pathPrefix != "" {
uploadPath = filepath.Join(p.pathPrefix, uploadPath)
}
Pull request description
Checklist (choose whats happened)
Breaking changes
Changes
Fixes