Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[187579809]: fix for unexpected automation error structure #643

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion R/automation.R
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,15 @@ crunchAutomationErrorHandler <- function(response) {
if (inherits(response, "response")) {
msg <- http_status(response)$message
response_content <- content(response)
} else {
} else if (is.list(response$message)) {
msg <- response$message$description
response_content <- response$message
} else if (is.character(response$message)) {
# Happens when a 500 error occurs during async automation messages
halt(response$message)
} else {
# We're totally confused by the response, but we know there was an error
halt("Something went when running the automation script.")
}
automation_messages <- try(response_content$resolution, silent = TRUE)

Expand Down
Loading