Change temp to temporary in meteor mongo

This commit is contained in:
Emily Stark
2013-06-14 16:30:47 -07:00
parent ea48bf81bf
commit df9ceed07e
2 changed files with 3 additions and 3 deletions

View File

@@ -232,7 +232,7 @@ exports.logs = function (options) {
// options:
// - context
// - app
exports.tempMongoUrl = function (options) {
exports.temporaryMongoUrl = function (options) {
var galaxy = getGalaxy(options.context);
return galaxy.call('getTempMongoUrl', options.app);
return galaxy.call('getTemporaryMongoUrl', options.app);
};

View File

@@ -792,7 +792,7 @@ Fiber(function () {
// remote mode
if (!!context.galaxyUrl) {
var deployGalaxy = require('./deploy-galaxy.js');
var url = deployGalaxy.tempMongoUrl({
var url = deployGalaxy.temporaryMongoUrl({
app: new_argv._[1],
context: context
});