Use the new Rails error format
This commit is contained in:
parent
2385305f6f
commit
9a575a79ec
|
@ -75,10 +75,7 @@ module VagrantPlugins
|
||||||
false
|
false
|
||||||
rescue RestClient::NotAcceptable => e
|
rescue RestClient::NotAcceptable => e
|
||||||
begin
|
begin
|
||||||
errors = JSON.parse(e.response)["errors"]
|
errors = JSON.parse(e.response)["errors"].join("\n")
|
||||||
.map { |h| h["message"] }
|
|
||||||
.join("\n")
|
|
||||||
|
|
||||||
raise Errors::ServerError, errors: errors
|
raise Errors::ServerError, errors: errors
|
||||||
rescue JSON::ParserError; end
|
rescue JSON::ParserError; end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue