You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2018. It is now read-only.
system boots
any messages sent are queued in temporary polling connection
action-cable notifies client that we are connected
client notifies server that connection is complete and gets any queued messages
temporary connection is destroyed
the new action-cable connection is established
at the destroy step very often sqlite3 dies with a db locked error
this means that the action action-cable connection (within hyper-operation) never is established.
Solution: on the client poll 10 times every 200 ms then fail.
This will help if there are any other reasons for failure at this stage.
The text was updated successfully, but these errors were encountered:
sequence goes like this:
system boots
any messages sent are queued in temporary polling connection
action-cable notifies client that we are connected
client notifies server that connection is complete and gets any queued messages
temporary connection is destroyed
the new action-cable connection is established
at the destroy step very often sqlite3 dies with a db locked error
this means that the action action-cable connection (within hyper-operation) never is established.
Solution: on the client poll 10 times every 200 ms then fail.
This will help if there are any other reasons for failure at this stage.
The text was updated successfully, but these errors were encountered: