From 5c8478f917b9f1d7683067b98dfea676d933a5cf Mon Sep 17 00:00:00 2001 From: hong-revo Date: Thu, 17 Jan 2019 23:34:06 +1100 Subject: [PATCH] update docs --- NEWS.md | 1 + man/file.Rd | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 19bea97..8e3ac8c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,7 @@ * Add role-based access control via Azure Active Directory tokens for blob and ADLSgen2 storage. * Add ADLS upload/download support to `upload_to_url` and `download_from_url`. * Support uploading from a `textConnection` or `rawConnection` object, which avoids having to create a temporary file when uploading R objects in memory. See the examples for `upload_blob`, `upload_azure_file` and `upload_adls_file`. +* Set default blocksize for `upload_azure_file` to 4MB, the maximum permitted by the API (#5). # AzureStor 1.0.0 diff --git a/man/file.Rd b/man/file.Rd index c95c22b..368272c 100644 --- a/man/file.Rd +++ b/man/file.Rd @@ -11,7 +11,7 @@ \usage{ list_azure_files(share, dir, info = c("all", "name"), prefix = NULL) -upload_azure_file(share, src, dest, blocksize = 2^24) +upload_azure_file(share, src, dest, blocksize = 2^22) download_azure_file(share, src, dest, overwrite = FALSE)