-
Notifications
You must be signed in to change notification settings - Fork 9
Add Windows Compatibility and forward compatibility with Quart #20
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
base: simple
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| __version__ = "3.0.4" | ||
| __version__ = "3.0.5" | ||
|
|
||
| from .bind import AsyncBind | ||
| from .bind import Bind | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -258,7 +258,8 @@ def register_engine_connection_cross_process_safety_handlers( | |||||||||||||||
| def close_connections_for_forking(): | ||||||||||||||||
| engine.dispose(close=False) | ||||||||||||||||
|
|
||||||||||||||||
| os.register_at_fork(before=close_connections_for_forking) | ||||||||||||||||
| if os.name == 'posix': | ||||||||||||||||
| os.register_at_fork(before=close_connections_for_forking) | ||||||||||||||||
|
Comment on lines
+261
to
+262
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This check for
Suggested change
|
||||||||||||||||
|
|
||||||||||||||||
| def connect(dbapi_connection, connection_record): | ||||||||||||||||
| connection_record.info["pid"] = os.getpid() | ||||||||||||||||
|
|
||||||||||||||||
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.
It's good to see the version number updated. However, ensure that the versioning scheme follows semantic versioning principles. Consider if a minor or patch version bump is more appropriate based on the changes made.