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

list cluster should use paste() instead of + #213

Merged
merged 2 commits into from
Jan 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions R/cluster.R
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ getClusterList <- function(filter = NULL) {
rAzureBatch::listPools(
query = list(
"$filter" = filterClause,
"$select" = "id,state,allocationState,vmSize,currentDedicatedNodes" +
",targetDedicatedNodes,currentLowPriorityNodes,targetLowPriorityNodes"
"$select" = paste0("id,state,allocationState,vmSize,currentDedicatedNodes,",
"targetDedicatedNodes,currentLowPriorityNodes,targetLowPriorityNodes")
)
)

Expand Down