-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
If there is any issue during the upload where CloudShark returns a non 200 OK response the cshark plugin returns a generic message back to the client:
Lines 44 to 51 in c0d32fb
| static void cshark_header_done_cb(struct uclient *ucl) | |
| { | |
| if (ucl->status_code != 200) { | |
| ERROR("%s: received error, please double check your config file\n", PROJECT_NAME); | |
| uclient_disconnect(ucl); | |
| uloop_end(); | |
| } | |
| } |
static void cshark_header_done_cb(struct uclient *ucl)
{
if (ucl->status_code != 200) {
ERROR("%s: received error, please double check your config file\n", PROJECT_NAME);
uclient_disconnect(ucl);
uloop_end();
}
}
This should also return the error code and message sent by the CloudShark server to the client.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels