From e4721b4c7c9b42c859ab71df018d899ab1517864 Mon Sep 17 00:00:00 2001 From: Robinson Date: Thu, 14 Dec 2023 22:50:42 +0100 Subject: [PATCH] fixed typo --- src/dorkbox/network/aeron/AeronDriverInternal.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/network/aeron/AeronDriverInternal.kt b/src/dorkbox/network/aeron/AeronDriverInternal.kt index 166483f8..7b08076e 100644 --- a/src/dorkbox/network/aeron/AeronDriverInternal.kt +++ b/src/dorkbox/network/aeron/AeronDriverInternal.kt @@ -695,7 +695,7 @@ internal class AeronDriverInternal(endPoint: EndPoint<*>?, config: Configuration val aeron1 = aeron if (aeron1 == null || aeron1.isClosed) { - val e = Exception("Aeron Driver [$driverId]: Error closing publication [$logInfo] :: sessionId=${subscription.images().firstOrNull()?.sessionId()}, streamId=${subscription.streamId()}") + val e = Exception("Aeron Driver [$driverId]: Error closing subscription [$logInfo] :: sessionId=${subscription.images().firstOrNull()?.sessionId()}, streamId=${subscription.streamId()}") throw e }