Commit ef9dfa7c3aaa1489d82da0d657a4ffb2c22cb9e3

Authored by Randy Stauner
Committed by Arthur Neves
1 parent ca1d77e6
Exists in master and in 1 other branch production

Put colon between host and port in example mongo config

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
config/mongoid.example.yml
... ... @@ -33,7 +33,7 @@ production:
33 33 default:
34 34 database: <%= ENV['MONGOID_DATABASE'] %>
35 35 hosts:
36   - - <%=ENV["MONGOID_HOST"]%><%=ENV["MONGOID_PORT"]%>
  36 + - '<%=ENV["MONGOID_HOST"]%>:<%=ENV["MONGOID_PORT"]%>'
37 37 username: <%= ENV['MONGOID_USERNAME'] %>
38 38 password: <%= ENV['MONGOID_PASSWORD'] %>
39 39 options:
... ...