-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump Elixir version * Handle 404 not found errors This can happen when you try and run an action against a lead that doesn't exist. * Bump major version Dropping support for Elixir 1.9 in this PR * Bump elixir version on CI
- Loading branch information
Showing
7 changed files
with
92 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
elixir 1.9.0 | ||
erlang 22.0.5 | ||
|
||
elixir 1.10.3 | ||
erlang 22.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[ | ||
{ | ||
"request": { | ||
"body": "{\"destination\":\"dont_find_me\",\"source\":\"lead_8xlzqZBSz6iKJJLoZ82Fh2vqcUzretDDBClxTmWgLJ1\"}", | ||
"headers": { | ||
"Content-Type": "application/json", | ||
"Accept": "application/json" | ||
}, | ||
"method": "post", | ||
"options": { | ||
"basic_auth": [ | ||
"FAKE_CLOSEIO_TOKEN:", | ||
"" | ||
] | ||
}, | ||
"request_body": "", | ||
"url": "https://api.close.com/api/v1/lead/merge/" | ||
}, | ||
"response": { | ||
"binary": false, | ||
"body": "{\"errors\":[\"Source lead does not exist.\"]}\n", | ||
"headers": { | ||
"date": "Thu, 06 Aug 2020 15:17:36 GMT", | ||
"content-type": "application/json", | ||
"content-length": "43", | ||
"x-frame-options": "SAMEORIGIN", | ||
"x-rate-limit-limit": "320", | ||
"x-rate-limit-remaining": "319", | ||
"x-rate-limit-reset": "7.699090", | ||
"x-xss-protection": "1; mode=block", | ||
"x-content-type-options": "nosniff", | ||
"strict-transport-security": "max-age=31556926; includeSubDomains", | ||
"referrer-policy": "no-referrer-when-downgrade", | ||
"set-cookie": "session=; Expires=Thu, 01-Jan-1970 00:00:00 GMT; Max-Age=0; Path=/", | ||
"x-envoy-upstream-service-time": "51", | ||
"server": "envoy" | ||
}, | ||
"status_code": 404, | ||
"type": "ok" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters