(port: number)
| 64 | ) |
| 65 | |
| 66 | const makeClientLayer = (port: number) => |
| 67 | SocketRunner.layerClientOnly.pipe( |
| 68 | Layer.provide(NodeClusterSocket.layerClientProtocol), |
| 69 | Layer.provide(ShardingConfig.layer({ |
| 70 | runnerAddress: Option.some(RunnerAddress.make("localhost", port)), |
| 71 | runnerListenAddress: Option.some(RunnerAddress.make("localhost", port)), |
| 72 | entityTerminationTimeout: 0, |
| 73 | entityMessagePollInterval: 5000, |
| 74 | sendRetryInterval: 100 |
| 75 | })), |
| 76 | Layer.provide(RpcSerialization.layerMsgPack) |
| 77 | ) |
| 78 | |
| 79 | // BigDecimal.normalize creates a circular `normalized` self-reference. |
| 80 | // When a persisted message is sent with discard: true, the notify path in Runners.makeRpc |
no test coverage detected
searching dependent graphs…