lheinold
lheinold
Some example lines: ``` Wed Sep 22 20:47:43.520 COMPONENT NOTICE UPDATE INFO : time: 1632317468747827000, seq_num: 267506 Wed Sep 22 20:47:43.520 COMPONENT2 NOTICE UPDATE INFO : time: 1632317468747827000, seq_num: 267506...
Basically, the software I'm debugging is going much slower than usual and log statements that are usually .001s apart or less are .02s+. I am trying to write up a...
So I did some more research into pipes and they do have separate read/write buffers. However, if the write buffer fills up, `write` blocks until the other side of the...
I think I got this working with both `recv` and `send` having a timeout. Here's my code for `spin` (could totally be cleaned up but it seems to work so...
I actually don't think that should cause a deadlock. Step 4 has two possible outcomes: 1. Sending the results to the parent does not fill up the queue. In this...
That error is interesting. I was setting my timeouts before `self.proc.start()` and also called `detach()` on both sockets (not sure if this last part is necessary though). I think that...