-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Async compatible SQLPanel
#1993
Merged
Merged
Changes from 10 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6cb6396
ASGI check approach with added test and docs
salty-ivy 830c964
revert changes
salty-ivy 1c39baa
Async compatible
salty-ivy 7e1993f
asynchornise instrumentaion internally in panel logic rather than mid…
salty-ivy a5970f5
fix docstring
salty-ivy 284c369
add period in the docstring comment
salty-ivy 263e856
mark aenable_instrumentation as mehtod
salty-ivy 7bd5314
add asgi and aenable_instrumentation in wordlist
salty-ivy 9ecd36d
fix word spelling
salty-ivy d9dbb92
Spelling changes?
tim-schilling 4cd962c
merged with main
salty-ivy b926820
Merge branch 'async-sql-panel' of https://github.com/salty-ivy/django…
salty-ivy a6f6b49
remove docstring from base enable_instrumentation
salty-ivy 6ba6a6d
add the revised docstring back again
salty-ivy 07f175a
aenable for testing lint failures
salty-ivy e44b305
remove instrumentation keyword from docs
salty-ivy d954bda
add instrumentation in spelling list
salty-ivy 252ae07
remove underscore
salty-ivy bde0bed
remove instrumentation
salty-ivy bae89e6
add instrumentation word in docstring
salty-ivy e406cf8
add instrumentation word in docstring
salty-ivy 0532e7a
Update language for enable_instrumentation docstring.
tim-schilling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,9 @@ Pympler | |
Roboto | ||
Transifex | ||
Werkzeug | ||
aenable | ||
ajax | ||
asgi | ||
async | ||
backend | ||
backends | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
maybe an "if needed" ? it's not mandatory for async to have a aenable ?
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.
yup, although
async instrumentation logic
itself means thatawait
is required in that caseaenable_instrumentation
would be the only choice?