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

Commit

Permalink
list cluster should use paste() instead of + (#213)
Browse files Browse the repository at this point in the history
* use paste() instead of +

* use paste0
  • Loading branch information
paselem committed Jan 29, 2018
1 parent d1ba6c9 commit 5845985
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 5845985

Please sign in to comment.