bneradt commented on pull request #8284: URL: https://github.com/apache/trafficserver/pull/8284#issuecomment-907261231
I'm not sure why the ports which were just recycled are being immediately used by the process. queue.Queue functions as a FIFO as we'd expect: > >>> import queue > >>> q = queue.Queue() > >>> q.put(1) > >>> q.put(2) > >>> q.put(3) > >>> q.get() > 1 > >>> q.put(1) > >>> q.get() > 2 Note that 2 is still returned immediately after 1 is put back in, as we'd desire. But apparently `61329` is being returned to the TS process immediately after it being recycled. -- 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]
