From b3397827e170d9c3f83cb3e29c3b493a0ac98427 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Tue, 25 Aug 2015 16:09:08 -0400 Subject: [PATCH] Fix service_url scheme. Closes #1 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 91014b2..d67d5e2 100755 --- a/functions +++ b/functions @@ -49,5 +49,5 @@ service_url() { local ID="$(cat "$SERVICE_ROOT/ID")" local IP="$(get_container_ip "$ID")" - echo "mongo://$IP:27017" + echo "mongodb://$IP:27017" }