From 539ed1720b97a6b8ae7377710660c51f6a0838e8 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Fri, 10 Nov 2017 14:13:42 +0100 Subject: [PATCH] changed the username and password for the mysql server (for which I supidly included my own in the last commit *facepalm*) --- source/calendarwebapp/configuration.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/calendarwebapp/configuration.d b/source/calendarwebapp/configuration.d index 7f31ce2..ddf38af 100644 --- a/source/calendarwebapp/configuration.d +++ b/source/calendarwebapp/configuration.d @@ -23,7 +23,7 @@ public: override void registerDependencies(shared(DependencyContainer) container) { auto mongoClient = connectMongoDB("localhost"); - auto pool = new MySQLPool("localhost", "root", "Ilemm3Kzj", "CalendarWebapp"); + auto pool = new MySQLPool("localhost", "username", "password", "CalendarWebapp"); container.register!MySQLPool.existingInstance(pool); container.register!MongoClient.existingInstance(mongoClient); container.register!(EventStore, MySQLEventStore);