Merge pull request #10922 from demarches-simplifiees/fix_10921
Gestion de nouveaux codes d'erreur dans l'API Entreprise
This commit is contained in:
commit
8266f7ff6c
4 changed files with 27 additions and 1 deletions
|
@ -141,7 +141,7 @@ class APIEntreprise::API
|
|||
def service_unavailable?(response)
|
||||
return true if response.code == 503
|
||||
if response.code == 502 || response.code == 504
|
||||
parse_response_errors(response).any? { _1.is_a?(Hash) && ["01000", "01001", "01002"].include?(_1[:code]) }
|
||||
parse_response_errors(response).any? { _1.is_a?(Hash) && ["01000", "01001", "01002", "02002", "03002"].include?(_1[:code]) }
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue