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
The AEPsych server receives data from clients through "tell" messages and fits a model to that data to recommend trials that it sends back to the client through "ask" messages. There are a number of things that could go wrong in this process (all of these issues should be recorded in the logs with sufficient detail to understand what happened):
The server could receive ill-formatted messages. It should be able to fail gracefully, and wait to receive another message.
The server could fail to fit the model after an "ask" message. It should fallback to sending a Sobol trial.
The server could lose connection to the client. It should recognize this and wait for a new connection.
There are surely lots of other scenarios that the server should be prepared for.
Unit tests should be written to test all these cases and to see where the cracks are in the current error-handling.
The text was updated successfully, but these errors were encountered:
The AEPsych server receives data from clients through "tell" messages and fits a model to that data to recommend trials that it sends back to the client through "ask" messages. There are a number of things that could go wrong in this process (all of these issues should be recorded in the logs with sufficient detail to understand what happened):
Unit tests should be written to test all these cases and to see where the cracks are in the current error-handling.
The text was updated successfully, but these errors were encountered: