We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d3e31 commit 7b4351cCopy full SHA for 7b4351c
1 file changed
src/console.ts
@@ -54,13 +54,8 @@ replaceHandlers(data => {
54
55
// eslint-disable-next-line
56
;(async () => {
57
- // Collect manifest of the peer `TcpServer`
58
- const manifests: Manifest[] = await discoverTcp()
59
- const clientTypes: ClientType[] = [TcpClient as ClientType]
60
- log.debug(`Obtained manifests: ${JSON.stringify(manifests, null, ' ')}`)
61
-
62
// Create executor (no need to start it, since it has no servers)
63
- const executor = new Executor(manifests, clientTypes)
+ const executor = new Executor([discoverTcp], [TcpClient as ClientType])
64
65
// Create the REPL with the starting prompt
66
const repl = readline.createInterface({
0 commit comments