vtl: increase retry timeout on 503, print http status on error.

This commit is contained in:
Robin Gareus 2013-03-26 14:11:52 +01:00
parent 8d2a6b7687
commit 0781b871d4
1 changed files with 5 additions and 1 deletions

View File

@ -195,13 +195,17 @@ http_get_thread (void *arg) {
vif->get_video_filename().c_str()
);
int status = 0;
int timeout = 400; // * 5ms -> 2sec
int timeout = 1000; // * 5ms -> 5sec
char *res = NULL;
do {
res=curl_http_get(url, &status);
if (status == 503) usleep(5000); // try-again
} while (status == 503 && --timeout > 0);
if (status != 200 || !res) {
print("no-video frame: video-server returned http-status: %d\n", status);
}
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
vif->http_download_done(res);
pthread_exit(0);