config.id -> mediaDriverId()

This commit is contained in:
Robinson 2023-08-09 22:09:44 -06:00
parent 4d73d4802c
commit 96cd987238
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ class AeronDriver private constructor(config: Configuration, val logger: KLogger
// we have INSTANCE of the "wrapper" AeronDriver, because we want to be able to have references to the logger when doing things,
// however - the code that actually does stuff is a "singleton" in regard to an aeron configuration
return lock.withLock {
driverConfigurations.get(mediaDriverConfig.id) != null
driverConfigurations.get(mediaDriverConfig.mediaDriverId()) != null
}
}