Browse Source

fix compilation

pull/1748/head
Chris Lu 4 years ago
parent
commit
fd1d8a2a09
  1. 3
      weed/filer/mysql/mysql_store.go

3
weed/filer/mysql/mysql_store.go

@ -3,6 +3,7 @@ package mysql
import (
"database/sql"
"fmt"
"time"
"github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/filer/abstract_sql"
@ -66,7 +67,7 @@ func (store *MysqlStore) initialize(user, password, hostname string, port int, d
store.DB.SetMaxIdleConns(maxIdle)
store.DB.SetMaxOpenConns(maxOpen)
store.DB.SetConnMaxLifetime(maxLifetimeSeconds*time.Second)
store.DB.SetConnMaxLifetime(time.Duration(maxLifetimeSeconds)*time.Second)
if err = store.DB.Ping(); err != nil {
return fmt.Errorf("connect to %s error:%v", sqlUrl, err)

Loading…
Cancel
Save