Skip to content

Commit

Permalink
Remove SSL mariadb connection options
Browse files Browse the repository at this point in the history
  • Loading branch information
felixsch committed Jan 31, 2024
1 parent 06ce267 commit ff79005
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/rmt/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,7 @@ def db_config(key = 'database')
'adapter' => Settings[key].adapter || 'mysql2',
'encoding' => Settings[key].encoding || 'utf8',
'timeout' => Settings[key].timeout || 5000,
'pool' => Settings[key].pool || 5,
'sslverify' => Settings[key].sslverify || false,
'sslkey' => Settings[key].sslkey || '',
'sslcert' => Settings[key].sslcert || '',
'sslca' => Settings[key].sslca || '',
'sslcapath' => Settings[key].sslcapath || '',
'sslcipher' => Settings[key].sslcipher || ''
'pool' => Settings[key].pool || 5
}
end

Expand Down

0 comments on commit ff79005

Please sign in to comment.