Skip to content

Commit

Permalink
Update services.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
jayamala17 authored Apr 18, 2024
1 parent 70a7a96 commit 454d400
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions services.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ def self.included(klass)
S.register(:dbconnect) do
db_config = S.db_config
Sequel.connect(adapter: "mysql2",
host: db_config.database.host,
port: db_config.database.port,
database: db_config.database.database,
user: db_config.database.user,
password: db_config.database.password,
host: db_config.host,
port: db_config.port,
database: db_config.database,
user: db_config.user,
password: db_config.password,
fractional_seconds: true)
end

0 comments on commit 454d400

Please sign in to comment.