Merge branch 'v1.12' into update-multi-app-run-steps

This commit is contained in:
İhsan Baran Sönmez 2023-12-08 21:45:25 +03:00 committed by GitHub
commit 703e3f93e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -253,7 +253,7 @@ async function start() {
}
});
await server.binding.receive('checkout', async (orderId) => console.log(`Received Message: ${JSON.stringify(orderId)}`));
await server.startServer();
await server.start();
}
```