Skip to content

Commit

Permalink
Merge pull request rstudio#6 from rstudio/task-status
Browse files Browse the repository at this point in the history
Change task completion status
  • Loading branch information
kippandrew committed Oct 23, 2013
2 parents d8af78c + 6b39cf2 commit 72a0937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/lucid.R
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ lucidClient <- function(authInfo) {
# are we finished? (note: this codepath is the only way to exit
# this function)
if (status$finished) {
if (identical(status$status, "complete"))
if (identical(status$status, "success"))
return (NULL)
else
stop(status$error, call. = FALSE)
Expand Down

0 comments on commit 72a0937

Please sign in to comment.