Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: remove delay
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Jan 10, 2017
1 parent aa29598 commit 4495b3a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/core/components/go-online.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ module.exports = (self) => {
self._blockService.goOnline(self._bitswap)
cb()
},
(cb) => self._pubsub.start(cb),
(cb) => self._pubsub.start(cb) // ,
// For all of the protocols to handshake with each other
(cb) => setTimeout(cb, 1000)
// (cb) => setTimeout(cb, 1000) // Still not decided if we want this
], callback)
})
}
Expand Down
1 change: 0 additions & 1 deletion test/core/both/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ describe('--both', () => {
require('./test-generic')
require('./test-init')
require('./test-object')
require('./test-pubsub')
})
File renamed without changes.

0 comments on commit 4495b3a

Please sign in to comment.