Skip to content

Commit

Permalink
#
Browse files Browse the repository at this point in the history
Signed-off-by: Theo Truong <[email protected]>
  • Loading branch information
nhtruong committed Mar 27, 2024
1 parent 9c4aa65 commit cdec7e3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion spec/integration/open_search/aws/sigv4_client_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@
access_key_id: 'key_id',
secret_access_key: 'secret')

described_class.new({ host: OPENSEARCH_URL, logger: Logger.new($stdout) }, signer)
described_class.new({
host: 'http://localhost:9200',
user: 'admin',
password: 'myStrongPassword123!',
logger: Logger.new($stdout),
transport_options: { ssl: { verify: false } }
},
signer)
end

it 'performs API actions without throwing any errors' do
Expand Down

0 comments on commit cdec7e3

Please sign in to comment.