Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/salt/api/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ def client
Net::HTTP.new(hostname, port).tap do |client|
client.use_ssl = use_ssl
client.open_timeout = timeout
client.read_timeout = read_timeout
# TODO: Allow specifying CA and such
client.verify_mode = OpenSSL::SSL::VERIFY_NONE
end
Expand Down
1 change: 1 addition & 0 deletions lib/salt/api/configure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module Configure
:username,
:password,
:timeout,
:read_timeout,
:eauth,
:port,
:use_ssl
Expand Down
2 changes: 1 addition & 1 deletion lib/salt/api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Salt
module Api
VERSION = "0.1.4"
VERSION = "0.1.6"
end
end