From 77d72ba81c7777c3468ed0d9d69a0bd1950b9eaa Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Wed, 2 Dec 2015 13:38:21 -0800 Subject: [PATCH] when using a mysql database, need to set parseTime=True in connection string query params Signed-off-by: David Lawrence (github: endophage) --- fixtures/server-config.json | 2 +- fixtures/signer-config.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fixtures/server-config.json b/fixtures/server-config.json index 5a1b56cdcd..1710fd007a 100644 --- a/fixtures/server-config.json +++ b/fixtures/server-config.json @@ -18,6 +18,6 @@ }, "storage": { "backend": "mysql", - "db_url": "root@tcp(notarymysql:3306)/notary" + "db_url": "root@tcp(notarymysql:3306)/notary?parseTime=True" } } diff --git a/fixtures/signer-config.json b/fixtures/signer-config.json index 780b7c5a27..6c2de985f3 100644 --- a/fixtures/signer-config.json +++ b/fixtures/signer-config.json @@ -11,6 +11,6 @@ }, "storage": { "backend": "mysql", - "db_url": "root@tcp(notarymysql:3306)/notary" + "db_url": "root@tcp(notarymysql:3306)/notary?parseTime=True" } }