Skip to content

Commit

Permalink
fix(core-p2p): call next() so that the request can proceed (#3163)
Browse files Browse the repository at this point in the history
  • Loading branch information
spkjp committed Nov 21, 2019
1 parent 0acd17f commit 76c7f8d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/core-p2p/src/socket-server/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export class Worker extends SCWorker {
const isAppReady: boolean = (await this.sendToMasterAsync("p2p.utils.isAppReady")).data.ready;

if (!isAppReady) {
next();
return;
}

Expand Down

0 comments on commit 76c7f8d

Please sign in to comment.