Skip to content

Commit c390605

Browse files
committed
fix runner appConfig WIP
1 parent 96985e6 commit c390605

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/runner/src/runner.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,11 @@ export class Runner<X extends AppConfig> implements IComponent {
356356

357357
this.sendHandshakeMessage();
358358

359-
const { appConfig, args } = await this.waitForHandshakeResponse();
359+
const { args, appConfig } = this.runnerConnectInfo;
360360

361-
this.logger.debug("Handshake received", appConfig, args);
361+
await this.waitForHandshakeResponse();
362+
363+
this.logger.debug("Handshake received");
362364

363365
return { appConfig, args };
364366
}

0 commit comments

Comments
 (0)