-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Should fallback to degraded mode when any SystemCallError raised
The `::SystemCallError` includes - ::Errno::EINVAL, - ::Errno::ECONNRESET, - ::Errno::ECONNREFUSED, - ::Errno::ETIMEDOUT and more It's often caused by network problem or hardware error
- Loading branch information
IChou
committed
Sep 16, 2022
1 parent
b0c1114
commit b998b44
Showing
7 changed files
with
75 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,13 @@ require_relative 'lib/geetest_ruby_sdk/version' | |
Gem::Specification.new do |spec| | ||
spec.name = 'geetest_ruby_sdk' | ||
spec.version = GeetestRubySdk::VERSION | ||
spec.authors = ['Yuehao Hua'] | ||
spec.email = ['[email protected]'] | ||
spec.authors = ['Yuehao Hua', 'Yii Chou'] | ||
spec.email = ['[email protected], zhouyi@jinshuju,net'] | ||
|
||
spec.summary = 'Ruby version of Geetest SDK' | ||
spec.homepage = 'https://github.com/jinshuju/geetest-ruby-sdk' | ||
spec.license = 'MIT' | ||
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0') | ||
|
||
spec.metadata['allowed_push_host'] = 'https://github.com/jinshuju/geetest-ruby-sdk' | ||
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0') | ||
|
||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/jinshuju/geetest-ruby-sdk' | ||
|
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,3 @@ | ||
module GeetestRubySdk | ||
VERSION = '4.0.2' | ||
VERSION = '4.0.3' | ||
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
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