Merge pull request #323 from endophage/mysql_parsetime

when using a mysql database, need to set parseTime=True in connection…
This commit is contained in:
David Lawrence 2015-12-03 11:05:27 -08:00
commit 9b4f7ca599
2 changed files with 2 additions and 2 deletions

View File

@ -18,6 +18,6 @@
}, },
"storage": { "storage": {
"backend": "mysql", "backend": "mysql",
"db_url": "root@tcp(notarymysql:3306)/notary" "db_url": "root@tcp(notarymysql:3306)/notary?parseTime=True"
} }
} }

View File

@ -11,6 +11,6 @@
}, },
"storage": { "storage": {
"backend": "mysql", "backend": "mysql",
"db_url": "root@tcp(notarymysql:3306)/notary" "db_url": "root@tcp(notarymysql:3306)/notary?parseTime=True"
} }
} }