-
-
Notifications
You must be signed in to change notification settings - Fork 4.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
fix: Parse Server doesn't shutdown gracefully #9634
Conversation
🚀 Thanks for opening this pull request! |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## alpha #9634 +/- ##
==========================================
+ Coverage 93.12% 93.15% +0.03%
==========================================
Files 187 187
Lines 15037 15066 +29
==========================================
+ Hits 14003 14035 +32
+ Misses 1034 1031 -3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
89de779
to
1877ced
Compare
@parse-community/server-review This is ready for review. |
@mtrezza is this good to merge? |
I hade a review comment, but it was pending. |
# [8.1.0-alpha.3](8.1.0-alpha.2...8.1.0-alpha.3) (2025-03-27) ### Bug Fixes * Parse Server doesn't shutdown gracefully ([#9634](#9634)) ([aed918d](aed918d))
🎉 This change has been released in version 8.1.0-alpha.3 |
# [8.1.0](8.0.2...8.1.0) (2025-04-04) ### Bug Fixes * Parse Server doesn't shutdown gracefully ([#9634](#9634)) ([aed918d](aed918d)) ### Features * Add Cloud Code triggers `Parse.Cloud.beforeFind(Parse.File)`and `Parse.Cloud.afterFind(Parse.File)` ([#8700](#8700)) ([b2beaa8](b2beaa8)) * Add default ACL ([#8701](#8701)) ([12b5d78](12b5d78)) * Upgrade Parse JS SDK from 6.0.0 to 6.1.0 ([#9686](#9686)) ([f49c371](f49c371))
🎉 This change has been released in version 8.1.0 |
Pull Request
Issue
While working on parse-community/Parse-SDK-JS#2490 I noticed that
parseServer.handleShutdown()
doesn't close all connections. This results inserver.close(callback)
callback from running causing timeouts in the test suite.Approach
I moved all closing logic to
handleShutdown
. I also added it to the test suite onreconfigureServer
. This has a few benefits.helper.js
Client is closed
error or something similar. This allows for invariant between testreconfigureServer
callsTasks