summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-01-19 21:26:03 -0800
committerelijah <elijah@riseup.net>2014-01-19 21:26:03 -0800
commit8c087dc69174a5fbd9390b5c3a795fd0f56f6ed2 (patch)
tree6bc403f7e7de8febc56a6f9a2d7d92883bcb315c
parent1eb7d8b27728febe325cfa7ecde5f84ef45dcba0 (diff)
Redefine constant in a way that does not print out "warning: already initialized constant VERIFY_PEER"
-rw-r--r--config/environments/development.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb
index adde3ba..7b06c81 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -29,7 +29,7 @@ LeapWeb::Application.configure do
# Expands the lines which load the assets
config.assets.debug = true
- # hacky, but otherwise getting certificate error, and doesn't seem dangerous in development mode:
- OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
-
+ # super hacky, but otherwise getting certificate error, and doesn't seem dangerous in development mode:
+ OpenSSL::SSL.send(:remove_const, "VERIFY_PEER")
+ OpenSSL::SSL.const_set("VERIFY_PEER", OpenSSL::SSL::VERIFY_NONE)
end