Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
fix: skip tls verify while working on Wheatley replacement (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
chatchai-outreach committed Mar 30, 2023
1 parent a6493d7 commit 410efe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/lita/adapters/slack/rtm_connection.rb
Expand Up @@ -104,6 +104,7 @@ def safe_payload_for(channel, string)

def websocket_options
options = { ping: 10 }
options[:tls] = { :verify_peer => false } # temporarily workaround ca issue while working on Wheatley's replacement
options[:proxy] = { :origin => config.proxy } if config.proxy
options
end
Expand Down
2 changes: 1 addition & 1 deletion lita-slack.gemspec
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency "eventmachine"
spec.add_runtime_dependency "faraday"
spec.add_runtime_dependency "faye-websocket", ">= 0.8.0"
spec.add_runtime_dependency "faye-websocket", ">= 0.11.1"
spec.add_runtime_dependency "lita", ">= 4.7.1"
spec.add_runtime_dependency "multi_json"

Expand Down

0 comments on commit 410efe1

Please sign in to comment.