You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.
When running csv_issues_to_github.rb, if you encounter:
Faraday::SSLError: SSL_connect returned=1 errno=0 state=SSLv3
One workaround is to add this code to csv_issues_to_github.rb before "client = Octokit::Client.new...":
require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NON
See: googleapis/google-api-ruby-client#235
The text was updated successfully, but these errors were encountered:
When running csv_issues_to_github.rb, if you encounter:
Faraday::SSLError: SSL_connect returned=1 errno=0 state=SSLv3
One workaround is to add this code to csv_issues_to_github.rb before "client = Octokit::Client.new...":
require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NON
See: googleapis/google-api-ruby-client#235
The text was updated successfully, but these errors were encountered: