mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
simplify code
This commit is contained in:
parent
36dbc5f51c
commit
f640df7a2c
@ -21,11 +21,9 @@ func init() {
|
||||
func newMysqlQueryEndpoint(datasource *models.DataSource) (tsdb.TsdbQueryEndpoint, error) {
|
||||
logger := log.New("tsdb.mysql")
|
||||
|
||||
var protocol string
|
||||
protocol := "tcp"
|
||||
if strings.HasPrefix(datasource.Url, "/") {
|
||||
protocol = "unix"
|
||||
} else {
|
||||
protocol = "tcp"
|
||||
}
|
||||
cnnstr := fmt.Sprintf("%s:%s@%s(%s)/%s?collation=utf8mb4_unicode_ci&parseTime=true&loc=UTC&allowNativePasswords=true",
|
||||
datasource.User,
|
||||
|
Loading…
Reference in New Issue
Block a user