-
Notifications
You must be signed in to change notification settings - Fork 10.8k
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
regression: undefined fileBuffer in getUploadFormData when onFile is called before onField #34091
Conversation
Signed-off-by: Abhinav Kumar <[email protected]>
Looks like this PR is ready to merge! 🎉 |
|
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## release-7.1.0 #34091 +/- ##
=================================================
+ Coverage 75.75% 75.80% +0.04%
=================================================
Files 510 512 +2
Lines 22078 22181 +103
Branches 5387 5398 +11
=================================================
+ Hits 16726 16814 +88
- Misses 4706 4713 +7
- Partials 646 654 +8
Flags with carried forward coverage won't be shown. Click here to find out more. |
Signed-off-by: Abhinav Kumar <[email protected]>
Proposed changes (including videos or screenshots)
This PR addresses a regression in the
getUploadFormData
function where field events are processed after file events, causing the file buffer to becomeundefined
. This leads to intermittent request failures when processing uploads.Issue(s)
Steps to test or reproduce
Further comments
CORE-843