Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
use ip not localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricCouton committed Sep 8, 2022
1 parent b5701f6 commit 684f1f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/couchbase-orm/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Connection
@@config = nil
def self.config
@@config || {
:connection_string => "couchbase://#{ENV['COUCHBASE_HOST'] || 'localhost'}",
:connection_string => "couchbase://#{ENV['COUCHBASE_HOST'] || '127.0.0.1'}",
:username => ENV['COUCHBASE_USER'],
:password => ENV['COUCHBASE_PASSWORD'],
:bucket => ENV['COUCHBASE_BUCKET']
Expand Down

0 comments on commit 684f1f9

Please sign in to comment.