Skip to content

Commit

Permalink
fix: Fixes EOF OpenSSL error in Proxmox connection (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Manisha15 authored Feb 25, 2025
1 parent a1a8dc4 commit ac8b0e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/fog/proxmox/core.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def setup(options)
@connection_options = options[:connection_options] || {}
@connection_options[:disable_proxy] = true if ENV['DISABLE_PROXY'] == 'true'
@connection_options[:ssl_verify_peer] = false if ENV['SSL_VERIFY_PEER'] == 'false'
@connection_options[:ignore_unexpected_eof] = true
@proxmox_must_reauthenticate = true
@persistent = options[:persistent] || false
@token ||= options[:proxmox_token]
Expand Down

0 comments on commit ac8b0e1

Please sign in to comment.