Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Documentation rewrite #273

Merged
merged 13 commits into from
May 15, 2018
2 changes: 1 addition & 1 deletion R/autoscale.R
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ resizeCluster <- function(cluster,
dedicatedMax,
lowPriorityMin,
lowPriorityMax,
maxTasksPerNode = pool$maxTasksPerNode
maxTasksPerNode = cluster$maxTasksPerNode
),
autoscaleInterval = timeInterval
)
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion R/storage_management.R → R/storage-api.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ listStorageContainers <- function(prefix = "") {
storageClient <- config$storageClient

xmlResponse <-
storageClient$containerOperations$deleteContainer$listContainers(
storageClient$containerOperations$listContainers(
prefix, content = "parsed")

name <- getXmlValues(xmlResponse, ".//Container/Name")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions R/utility.R
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,6 @@ createOutputFile <- function(filePattern, url) {
# parsedValue[2] is ""
# parsedValue[3] is "accountname.blob.core.windows.net"
# parsedValue[4] is "outputs?se=2017-07-31&sr=c&st=2017-07-12"

parsedValue <- strsplit(url, "/")[[1]]

baseUrl <- paste0(parsedValue[1], "//", parsedValue[3])
Expand Down Expand Up @@ -304,4 +303,4 @@ getHttpErrorMessage <- function(responseObj) {
}
detailMessage <- paste0(detailMessage, "\r\nodata.metadata: ", responseObj$odata.metadata)
return(detailMessage)
}
}
Loading