From 7557762ab80450073e351fb446a95041863dafd0 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 30 May 2016 19:00:47 -0400 Subject: [PATCH] fix example db connection settings --- examples/class-registry/src/class_registry/server.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/class-registry/src/class_registry/server.clj b/examples/class-registry/src/class_registry/server.clj index 006bc24..47a0263 100644 --- a/examples/class-registry/src/class_registry/server.clj +++ b/examples/class-registry/src/class_registry/server.clj @@ -22,7 +22,7 @@ (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" - :subname "//10.0.0.20/class_registry" + :subname "//localhost/class_registry" :user "class_registry" :password "s3cr3t"})