* #2501

* Update stream.ts
This commit is contained in:
Aya Morisawa 2018-12-09 13:09:31 +09:00 committed by syuilo
parent f6f79fb388
commit 706d47ec32

View file

@ -75,12 +75,10 @@ export default class Stream extends EventEmitter {
// チャンネル再接続
if (isReconnect) {
this.sharedConnectionPools.forEach(p => {
for (const p of this.sharedConnectionPools)
p.connect();
});
this.nonSharedConnections.forEach(c => {
for (const c of this.nonSharedConnections)
c.connect();
});
}
}