in src/main/scala/security/ApiKeyAuth.scala [41:46]
override def run(): Unit = {
val cutoff = Instant.now().minus(cachingTtl.length, cachingTtl.unit.toChronoUnit)
this.synchronized {
cacheTracking = cacheTracking.filter(e=>e.time.isAfter(cutoff))
}
}