Skip to content

Commit

Permalink
fix runner appConfig WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrek6641 committed Sep 26, 2023
1 parent 96985e6 commit c390605
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/runner/src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,11 @@ export class Runner<X extends AppConfig> implements IComponent {

this.sendHandshakeMessage();

const { appConfig, args } = await this.waitForHandshakeResponse();
const { args, appConfig } = this.runnerConnectInfo;

this.logger.debug("Handshake received", appConfig, args);
await this.waitForHandshakeResponse();

this.logger.debug("Handshake received");

return { appConfig, args };
}
Expand Down

0 comments on commit c390605

Please sign in to comment.