Skip to content

Commit

Permalink
Update configs for mongodb tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Sep 27, 2023
1 parent 68b11b9 commit 383feb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Datastore:
MongoDB:
# Addrs holds the addresses for the seed servers.
Addrs:
- localhost
- mongodb://localhost
# Database is the database name used within MongoDB to store funnel data.
Database: funnel
# Timeout is the amount of time to wait for a server to respond when
Expand Down
2 changes: 1 addition & 1 deletion config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func DefaultConfig() Config {
IndexPrefix: "funnel",
},
MongoDB: MongoDB{
Addrs: []string{"localhost"},
Addrs: []string{"mongodb://localhost"},
Timeout: Duration(time.Minute * 5),
Database: "funnel",
},
Expand Down

0 comments on commit 383feb6

Please sign in to comment.