dtm/dtmsvr/config.go
2021-05-25 18:07:31 +08:00

11 lines
301 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package dtmsvr
type dtmsvrConfig struct {
PreparedExpire int64 `json:"prepare_expire"` // 单位秒当prepared的状态超过该时间才能够转变成canceled避免cancel了之后才进入prepared
Mysql map[string]string
}
var config = &dtmsvrConfig{
PreparedExpire: 60,
}