-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes for Faraday exceptions. Also, make rubocop happy (#9)
* catch the correct exceptions * fix rubocop
- Loading branch information
1 parent
46b36b8
commit 326f3b4
Showing
5 changed files
with
21 additions
and
19 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
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,13 +1,9 @@ | ||
class ExamplePlugin | ||
def on_outage_begin(outage) | ||
end | ||
def on_outage_begin(outage); end | ||
|
||
def on_outage_end(outage) | ||
end | ||
def on_outage_end(outage); end | ||
|
||
def on_error(service, request_env, response_env) | ||
end | ||
def on_error(service, request_env, response_env); end | ||
|
||
def on_success(service, request_env, response_env) | ||
end | ||
def on_success(service, request_env, response_env); end | ||
end |
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