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
Following the changes made in PR #1385, which addressed issue #1320, there is a concern that the deadlock observed in BFT tests might also occur in a production environment. PR #1385 introduced a workaround to fix test inconsistencies by using buffered channels in state tests. This solution, while effective for tests, should NOT be use in production.
The original issue involved channels not being fully consumed, leading to deadlocks. While the buffered channels have resolved the deadlock in tests, it's crucial to investigate if this issue could manifest in production scenarios.
The text was updated successfully, but these errors were encountered:
Following the changes made in PR #1385, which addressed issue #1320, there is a concern that the deadlock observed in BFT tests might also occur in a production environment. PR #1385 introduced a workaround to fix test inconsistencies by using buffered channels in state tests. This solution, while effective for tests, should NOT be use in production.
The original issue involved channels not being fully consumed, leading to deadlocks. While the buffered channels have resolved the deadlock in tests, it's crucial to investigate if this issue could manifest in production scenarios.
The text was updated successfully, but these errors were encountered: