We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96985e6 commit c390605Copy full SHA for c390605
packages/runner/src/runner.ts
@@ -356,9 +356,11 @@ export class Runner<X extends AppConfig> implements IComponent {
356
357
this.sendHandshakeMessage();
358
359
- const { appConfig, args } = await this.waitForHandshakeResponse();
+ const { args, appConfig } = this.runnerConnectInfo;
360
361
- this.logger.debug("Handshake received", appConfig, args);
+ await this.waitForHandshakeResponse();
362
+
363
+ this.logger.debug("Handshake received");
364
365
return { appConfig, args };
366
}
0 commit comments