chore: fix ioutil lint error after merging MySQL ent storage

Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
This commit is contained in:
m.nabokikh 2021-09-21 08:35:25 +04:00
parent f92a6f4457
commit d4e82e3315
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ import (
"crypto/x509"
"database/sql"
"fmt"
"io/ioutil"
"net"
"os"
"strconv"
"time"
@ -135,7 +135,7 @@ func (m *MySQL) makeTLSConfig() error {
if m.SSL.CAFile != "" {
rootCertPool := x509.NewCertPool()
pem, err := ioutil.ReadFile(m.SSL.CAFile)
pem, err := os.ReadFile(m.SSL.CAFile)
if err != nil {
return err
}