X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fstore-s3.c;h=fd2da4f5431b96c5f2598d900cbc49e4f903540c;hb=78f5b7a9c7840ce8b2dffb13fca676a18f8f9eb4;hp=4735de4bb57147b7f482b401983c780e61405fcb;hpb=38a7cd8d63ba82a8175f8e43a18a96b6188fd1a9;p=bluesky.git diff --git a/bluesky/store-s3.c b/bluesky/store-s3.c index 4735de4..fd2da4f 100644 --- a/bluesky/store-s3.c +++ b/bluesky/store-s3.c @@ -102,8 +102,9 @@ static void s3store_task(gpointer a, gpointer s) handler.responseHandler.completeCallback = s3store_response_callback; handler.getObjectDataCallback = s3store_get_handler; - S3_get_object(&store->bucket, async->key, NULL, 0, 0, NULL, - &handler, &info); + S3_get_object(&store->bucket, async->key, NULL, + async->start, async->len, NULL, &handler, &info); + async->range_done = TRUE; if (info.success) { async->data = bluesky_string_new_from_gstring(info.buf); @@ -114,6 +115,7 @@ static void s3store_task(gpointer a, gpointer s) } else if (async->op == STORE_OP_PUT) { struct put_info info; + info.success = 0; info.val = async->data; info.offset = 0; @@ -126,7 +128,11 @@ static void s3store_task(gpointer a, gpointer s) S3_put_object(&store->bucket, async->key, async->data->len, NULL, NULL, &handler, &info); - async->result = 0; + if (info.success) { + async->result = 0; + } else { + g_warning("Error completing S3 put operation; client must retry!"); + } } bluesky_store_async_mark_complete(async); @@ -186,7 +192,7 @@ static gpointer s3store_new(const gchar *path) else store->bucket.bucketName = g_strdup(path); store->bucket.protocol = S3ProtocolHTTP; - store->bucket.uriStyle = S3UriStylePath; + store->bucket.uriStyle = S3UriStyleVirtualHost; store->bucket.accessKeyId = getenv("AWS_ACCESS_KEY_ID"); store->bucket.secretAccessKey = getenv("AWS_SECRET_ACCESS_KEY");