Stu S
                                            Stu S
                                        
                                    @surendra-y - the problem I've had with swagger & friends (and tsoa looks similar) is that they all depend on some sort of non-authoritative, duplicate source of route information: annotations,...
@wesleytodd - 👍 That's a very clever solution. The kind of thing that seems obvious once you see, but as seen in this thread, not until then ;)
I made no attempt to be patronizing. I was making an effort to be diplomatic and not come across as aggressively complaining about http spec violations. Sometimes if I'm direct...
Yeah, so the fix could be something like: OLD, race-condition code: ``` @Override public long getOldestRecordTimeInMillis() { if (oldestFutureTrackerHeap.isEmpty()) { return 0; } return Instant.now().toEpochMilli() - oldestFutureTrackerHeap.peek().getTimestamp().toEpochMilli(); } ``` Proper...