This commit is contained in:
zfengms 2018-04-16 12:32:43 -07:00 коммит произвёл GitHub
Родитель a05f7a09af
Коммит 79503a7a7a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -495,6 +495,14 @@ setHttpTraffic <- function(value = FALSE) {
if (response$status_code == 201) {
break
}
else if (response$status_code == 403) {
stop(
paste(
"Error in creating job: Server failed to authenticate the request.",
"Make sure your batch account credential is set correctly."
)
)
}
else {
jobContent <- httr::content(response, content = "parsed")