-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
feat(server): remove socket reconnect support #3653
base: master
Are you sure you want to change the base?
Conversation
✅ Build karma 531 completed (commit 801e167977 by @johnjbarton) |
✅ Build karma 530 completed (commit 801e167977 by @johnjbarton) |
✅ Build karma 2928 completed (commit 801e167977 by @johnjbarton) |
✅ Build karma 2979 completed (commit 3139506d62 by @johnjbarton) |
✅ Build karma 582 completed (commit 3139506d62 by @johnjbarton) |
✅ Build karma 581 completed (commit 3139506d62 by @johnjbarton) |
This feature has been trouble and there are cases it cannot work. Any socket disconnect during a test can lose data. The server will disconnect if the client does not reply. Combined it makes any long running or large test error prone. Better to bail and restart the test. Fixes karma-runner#3652
✅ Build karma 2980 completed (commit e9b1057bed by @johnjbarton) |
✅ Build karma 583 completed (commit e9b1057bed by @johnjbarton) |
✅ Build karma 582 completed (commit e9b1057bed by @johnjbarton) |
b9831cc
to
e9e795c
Compare
6fe6df0
to
56cda53
Compare
This feature has been trouble and there are cases it cannot work.
Any socket disconnect during a test can lose data. The server will disconnect
if the client does not reply. Combined it makes any long running or large
test error prone. Better to bail and restart the test.
Fixes #3652