rzo1 opened a new pull request, #8985: URL: https://github.com/apache/storm/pull/8985
The map of function name to request queue in `DRPC` gained an entry for each function name a client asked about, and no code path ever removed one: `cleanup()` removed the request from a queue and `cleanupAll()` drained queues, but the queue object and its map entry stayed for the life of the process. Entries are now dropped once nothing is waiting in them, using `compute`/`computeIfPresent` so the map stays race-free. A registered function is served exactly as before, its queue simply being recreated by the next `execute()`. Extends `DRPCTest`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
