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

Commit

Permalink
Fixed output (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
brnleehng authored May 11, 2018
1 parent 23079f5 commit d02599d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion R/doAzureParallel.R
Original file line number Diff line number Diff line change
Expand Up @@ -774,8 +774,9 @@ setHttpTraffic <- function(value = FALSE) {
return(results)
}
else{
print(
cat(
paste0(
"\n",
"Because the 'wait' parameter is set to FALSE, the returned value is the job ID associated with ",
"the foreach loop. Use this returned value with getJobResults(job_id) to get the results ",
"when the foreach loop is completed in Azure"
Expand Down
4 changes: 1 addition & 3 deletions R/jobUtilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ waitForTasksToComplete <-
}

waitForJobPreparation <- function(jobId, poolId) {
cat("Job Preparation Status: Package(s) being installed")
cat("\nJob Preparation Status: Package(s) being installed")
config <- getConfiguration()
batchClient <- config$batchClient

Expand Down Expand Up @@ -623,8 +623,6 @@ waitForJobPreparation <- function(jobId, poolId) {
cat(".")
Sys.sleep(10)
}

cat("\n")
}

isError <- function(x) {
Expand Down

0 comments on commit d02599d

Please sign in to comment.