From 985cea327735a2de42bee46d6da05ad4f5eb97ff Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Fri, 14 Jun 2013 15:30:19 -0700 Subject: [PATCH] Clean up (Avi's comments) --- tools/deploy-galaxy.js | 3 +-- tools/meteor.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/deploy-galaxy.js b/tools/deploy-galaxy.js index d0d51f0d50d..42121acb37c 100644 --- a/tools/deploy-galaxy.js +++ b/tools/deploy-galaxy.js @@ -232,8 +232,7 @@ exports.logs = function (options) { // options: // - context // - app -exports.mongo = function (options) { +exports.tempMongoUrl = function (options) { var galaxy = getGalaxy(options.context); - console.log(options.app); return galaxy.call('getTempMongoUrl', options.app); }; diff --git a/tools/meteor.js b/tools/meteor.js index 45ec6fcd5ac..f72d76fda57 100644 --- a/tools/meteor.js +++ b/tools/meteor.js @@ -792,7 +792,7 @@ Fiber(function () { // remote mode if (!!context.galaxyUrl) { var deployGalaxy = require('./deploy-galaxy.js'); - var url = deployGalaxy.mongo({ + var url = deployGalaxy.tempMongoUrl({ app: new_argv._[1], context: context });