Fix passing the write method to getTaskFile()

The write object was not passed to the constructor
This commit is contained in:
zerweck 2019-07-22 16:21:45 +02:00 коммит произвёл GitHub
Родитель e05403adbc
Коммит 5847d2d8d1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -79,7 +79,8 @@ FileOperations <- R6::R6Class(
request <- AzureRequestV2$new(
method = verb,
path = paste0("/jobs/", jobId, "/tasks/", taskId, "/files/", filePath),
query = list("api-version" = apiVersion)
query = list("api-version" = apiVersion),
write = write
)
response <- self$client$execute(request)