Handle case when open connection gets blocked
See original GitHub issueSometimes in firefox the open call gets blocked and the callback sent to idb
never gets called.
It might be helpful to add an event listener for request.onblocked
with a promise rejection inside.
If you think this is a good idea I can make a PR.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Common Reasons Why Connections Stay Open for a Long ...
If the application does not explicitly close the connection, that connection will stay open forever in WAS until that server is restarted. This...
Read more >Understand and resolve SQL Server blocking problems
This article provides instruction on first understanding what blocking is in terms of SQL Server and furthermore how to investigate its ...
Read more >c# - Handling the Database Connection and network Issue in ...
My code is listed above....In the last catch block....I need to catch exception if there is any database connective issue or any network...
Read more >Is there an issue with closing our database connections in the ...
This is a fairly standard construct in our application to ensure the database connection is closed at the end of our Try block....
Read more >Async opening of connections in parallel is slow/blocking #601
Multiple opens of connections are very slow and seem to be bocking. In pooled mode it seems only a very limited amount of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ohh cheers, will take a look
I partially misread the title of this issue, my bad! The problem I’ve been trying to solve relates to
delete
, but this also relates toopen
. I’ll go ahead and make the PR for both 😄