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
In db we have specified <30 chars for the prover_id column but there is no other constraint among our code. So coordinator may update a line with a string larger than 30 chars and this action seems cause the db conn has ruined persistently with following error ouput unless we restart the coordinator:
ERROR 2021-05-13T05:38:14Z: prover_cluster::coordinator::controller: db query idle task: Io(Kind(ConnectionAborted))
We may at least check the length at the beginning of a client starting. Or check it in corrdinator when accepting poll_task request if client can not be fully trusted.
The text was updated successfully, but these errors were encountered:
In db we have specified <30 chars for the prover_id column but there is no other constraint among our code. So coordinator may update a line with a string larger than 30 chars and this action seems cause the db conn has ruined persistently with following error ouput unless we restart the coordinator:
We may at least check the length at the beginning of a client starting. Or check it in corrdinator when accepting poll_task request if client can not be fully trusted.
The text was updated successfully, but these errors were encountered: