mirror of https://github.com/docker/docs.git
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:
commit
9b4f7ca599
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue