Skip to content

Commit ac8b0e1

Browse files
authored
fix: Fixes EOF OpenSSL error in Proxmox connection (#102)
1 parent a1a8dc4 commit ac8b0e1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/fog/proxmox/core.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def setup(options)
5353
@connection_options = options[:connection_options] || {}
5454
@connection_options[:disable_proxy] = true if ENV['DISABLE_PROXY'] == 'true'
5555
@connection_options[:ssl_verify_peer] = false if ENV['SSL_VERIFY_PEER'] == 'false'
56+
@connection_options[:ignore_unexpected_eof] = true
5657
@proxmox_must_reauthenticate = true
5758
@persistent = options[:persistent] || false
5859
@token ||= options[:proxmox_token]

0 commit comments

Comments
 (0)