Browse Source
Merge pull request #183 from authurguo/main
fix config spell
pull/188/head
yedf2
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
dtmsvr/config/config.go
|
|
|
@ -42,7 +42,7 @@ type Store struct { |
|
|
|
DataExpire int64 `yaml:"DataExpire" default:"604800"` // Trans data will expire in 7 days. only for redis/boltdb.
|
|
|
|
RedisPrefix string `yaml:"RedisPrefix" default:"{a}"` // Redis storage prefix. store data to only one slot in cluster
|
|
|
|
TransGlobalTable string `yaml:"TransGlobalTable" default:"dtm.trans_global"` |
|
|
|
TransBranchOpTable string `yaml:"BranchTransOpTable" default:"dtm.trans_branch_op"` |
|
|
|
TransBranchOpTable string `yaml:"TransBranchOpTable" default:"dtm.trans_branch_op"` |
|
|
|
} |
|
|
|
|
|
|
|
// IsDB checks config driver is mysql or postgres
|
|
|
|
|