From 8d47b8b0b840cdb0fcb94744fd0e76e2fb176d98 Mon Sep 17 00:00:00 2001 From: Robinson Date: Tue, 27 Apr 2021 14:17:19 +0200 Subject: [PATCH] Fixed missing parameter --- src/dorkbox/network/aeron/AeronDriver.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/network/aeron/AeronDriver.kt b/src/dorkbox/network/aeron/AeronDriver.kt index 0a7d885f..e4a93f96 100644 --- a/src/dorkbox/network/aeron/AeronDriver.kt +++ b/src/dorkbox/network/aeron/AeronDriver.kt @@ -227,7 +227,7 @@ class AeronDriver(val config: Configuration, */ fun isRunning(context: MediaDriver.Context, timeout: Long = context.driverTimeoutMs()): Boolean { // if the media driver is running, it will be a quick connection. Usually 100ms or so - return context.isDriverActive(context.driverTimeoutMs()) { } + return context.isDriverActive(timeout) { } } /**