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
When there is no simulation exists this endpoint returns an empty list with a suitable message. The following is the message. Message: { "data": [], "message": "To create a new simulation, create a request at gcbm/new. To access the results of the existing simulations, create a request at gcbm/download." }
It is bad practice to return an empty list in the response. The following message is optimal in the place of the above message. { "message": "No simulations have been run yet. Please run a simulation by making a request to gcbm/new." }
The text was updated successfully, but these errors were encountered:
Hi, can you try fetching the list of existing simulations from the docker container, if that is done we can append that to the empty list and update the message.
When there is no simulation exists this endpoint returns an empty list with a suitable message. The following is the message.
Message:
{ "data": [], "message": "To create a new simulation, create a request at gcbm/new. To access the results of the existing simulations, create a request at gcbm/download." }
It is bad practice to return an empty list in the response. The following message is optimal in the place of the above message.
{ "message": "No simulations have been run yet. Please run a simulation by making a request to gcbm/new." }
The text was updated successfully, but these errors were encountered: