This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info it worked if it ends with ok | |
verbose cli [ 'node', '/usr/local/bin/npm', 'publish', 'mongodb' ] | |
info using [email protected] | |
info using [email protected] | |
verbose config file /Users/christian.kvalheim/.npmrc | |
verbose config file /usr/local/etc/npmrc | |
verbose publish [ 'mongodb' ] | |
info addNamed [ 'mongodb', '' ] | |
verbose addNamed [ null, '' ] | |
verbose GET mongodb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ReplicaSetManager = require('./test/tools/replica_set_manager').ReplicaSetManager; | |
var mongo = require('./lib/mongodb'), | |
Server = mongo.Server, | |
ReplSetServers = mongo.ReplSetServers, | |
http = require('http'), | |
debug = require('util').debug, | |
inspect = require('util').inspect; | |
var RS = new ReplicaSetManager({retries:120, arbiter_count:1, secondary_count:1, passive_count:0, name:'rs1'}); |
NewerOlder