Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Mar 15, 2021
1 parent 1746a4d commit 9c267f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/socketio/src/framework.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ export class MidwaySocketIOFramework extends BaseFramework<
}

public async run(): Promise<void> {
if (this.configurationOptions.pubClient && this.configurationOptions.subClient) {
if (
this.configurationOptions.pubClient &&
this.configurationOptions.subClient
) {
const pubClient = this.configurationOptions.pubClient;
const subClient = this.configurationOptions.subClient;
const adapter = createAdapter({ pubClient, subClient });
Expand Down

0 comments on commit 9c267f9

Please sign in to comment.