From e4dc88d4270c71a7438cd7e11a3055dcd44e24f7 Mon Sep 17 00:00:00 2001 From: Dominik Durner Date: Fri, 17 Nov 2023 11:55:32 +0100 Subject: [PATCH] Fixed publicly accessible file for simple example (request payer needed) --- example/simple/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/simple/main.cpp b/example/simple/main.cpp index 488aa46..2c61794 100644 --- a/example/simple/main.cpp +++ b/example/simple/main.cpp @@ -15,8 +15,8 @@ using namespace std; //--------------------------------------------------------------------------- int main(int /*argc*/, char** /*argv*/) { // The file to be downloaded - auto bucketName = "s3://cloud-storage-analytics:eu-central-1"; - auto fileName = "tpchSf500.db/tpchSf500.db"; + auto bucketName = "s3://anyblob:eu-central-1"; + auto fileName = "anyblob/anyblob.txt"; // Create a new task group (18 concurrent request maximum, and up to 1024 outstanding submissions) anyblob::network::TaskedSendReceiverGroup group(18, 1024);