Fix mysql connections

This commit is contained in:
Brian Kassouf 2017-02-15 14:31:15 -08:00 committed by Brian Kassouf
parent 24ddea9954
commit 29e07ac9e8
2 changed files with 0 additions and 7 deletions

View File

@ -64,8 +64,6 @@ func (cp *sqlConnectionProducer) Connection() (interface{}, error) {
} else {
conn += "?timezone=utc"
}
} else {
conn += " timezone=utc"
}
var err error

View File

@ -24,11 +24,6 @@ func pathConfigConnection(b *databaseBackend) *framework.Path {
Description: "DB type (e.g. postgres)",
},
"connection_details": &framework.FieldSchema{
Type: framework.TypeMap,
Description: "Connection details for specified connection type.",
},
"verify_connection": &framework.FieldSchema{
Type: framework.TypeBool,
Default: true,