Fix compilation of MySQL & Redshift plugins (#10640)

This commit is contained in:
Michael Golowka
2021-01-04 13:44:11 -07:00
committed by GitHub
parent 702929e881
commit 2a8f9632d3
3 changed files with 4 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ func main() {
// Run instantiates a RedShift object, and runs the RPC server for the plugin
func Run(apiTLSConfig *api.TLSConfig) error {
dbType, err := redshift.New(true)()
dbType, err := redshift.New()
if err != nil {
return err
}