Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,22 @@ go:
- 1.9
- tip

services:
- mongodb

env:
- FIX_TEST=
- FIX_TEST=fix40
- FIX_TEST=fix41
- FIX_TEST=fix42
- FIX_TEST=fix43
- FIX_TEST=fix44
- FIX_TEST=fix50
- FIX_TEST=fix50sp1
- FIX_TEST=fix50sp2
global:
- MONGODB_TEST_CXN=localhost
matrix:
- FIX_TEST=
- FIX_TEST=fix40
- FIX_TEST=fix41
- FIX_TEST=fix42
- FIX_TEST=fix43
- FIX_TEST=fix44
- FIX_TEST=fix50
- FIX_TEST=fix50sp1
- FIX_TEST=fix50sp2

matrix:
allow_failures:
Expand Down
46 changes: 44 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions config/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ const (
SQLStoreDriver string = "SQLStoreDriver"
SQLStoreDataSourceName string = "SQLStoreDataSourceName"
SQLStoreConnMaxLifetime string = "SQLStoreConnMaxLifetime"
MongoStoreConnection string = "MongoStoreConnection"
MongoStoreDatabase string = "MongoStoreDatabase"
ValidateFieldsOutOfOrder string = "ValidateFieldsOutOfOrder"
ResendRequestChunkSize string = "ResendRequestChunkSize"
EnableLastMsgSeqNumProcessed string = "EnableLastMsgSeqNumProcessed"
Expand Down
8 changes: 8 additions & 0 deletions config/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,14 @@ FileStorePath

Directory to store sequence number and message files. Only used with FileStoreFactory.

MongoStoreConnection

The MongoDB connection URL to use (see https://godoc.org/github.com/globalsign/mgo#Dial for the URL Format). Only used with MongoStoreFactory.

MongoStoreDatabase

The MongoDB-specific name of the database to use. Only used with MongoStoreFactory.

SQLStoreDriver

The name of the database driver to use (see https://github.com/golang/go/wiki/SQLDrivers for the list of available drivers). Only used with SqlStoreFactory.
Expand Down
Loading